会议上传文件

This commit is contained in:
fengachen
2021-09-13 15:33:09 +08:00
parent 4187f91989
commit 72556eef28
3 changed files with 38 additions and 34 deletions
+5 -2
View File
@@ -1,4 +1,4 @@
import {getAction} from '@api/manage'
import {getAction, postAction} from '@api/manage'
// 通过用户id获取用户信息
const getUserInfo = (params) => getAction('/sys/user/queryById',params)
@@ -8,10 +8,13 @@ const getMeetInfoById = (params) => getAction('/meeting/payMeeting/queryById',pa
const getAllWorkProjects = () => getAction('/project/payWorkingGroup/listAll')
// 通过id获取参会人详细信息
const getSingUpUserInfo = (params) => getAction('/meeting/payMeetingSituation/queryById',params)
// 会议管理上传会议资料
const uploadMeetingFiles = (params) => postAction('/meeting/payMeeting/uploadFile',params)
export {
getUserInfo,
getMeetInfoById,
getAllWorkProjects,
getSingUpUserInfo
getSingUpUserInfo,
uploadMeetingFiles
}