first commit

This commit is contained in:
2026-09-08 19:49:21 +08:00
commit ebffbab428
7320 changed files with 1477614 additions and 0 deletions
@@ -0,0 +1,31 @@
class typeUtil {
constructor() {
}
/**
* 获取全部会议类型
* @returns {Promise<*[]|*>}
*/
async getAllType() {
const resp = await $.get('/platform/activity/site/type/findAll')
if (resp.code === 0) {
resp.data.forEach(v => {
v['text'] = v['meetingTypeName']
v['value'] = v['id']
})
return resp.data
}
return []
}
async findMaxStateId() {
const resp = await $.get('/platform/activity/site/type/findMaxStateId')
if (resp.code === 0) {
return resp.data
}
}
}