feat:项目任务大纲列表渲染接口

This commit is contained in:
dongwug
2022-11-08 11:58:50 +08:00
parent 9ea1cf24e3
commit 7b52d58288
2 changed files with 204 additions and 166 deletions

View File

@@ -42,7 +42,7 @@ import qs from 'qs';
// 接口-请求
//基础票数上传接口
// export const baseVoteupload = (obj) => http.post('/vote/baseVoteupload', obj)
export const baseVoteupload = (obj) => http.post('/vote/baseVoteupload', obj)
//创建题干信息接口
export const createOptionMessage = (obj) => http.post('/vote/createOptionMessage', obj)
@@ -53,6 +53,12 @@ export const createVote = (obj) => http.post('/vote/createVote', obj)
//删除投票信息
export const deleteVoteMessage = (obj) => http.post('/vote/deleteVoteMessage', { params: obj })
//删除题干信息接口
export const deleteVoteStem = (obj) => http.post('/vote/deleteVoteStem', { params: obj })
//删除题选项息接口
export const deleteVoteStemOption = (obj) => http.post('/vote/deleteVoteStemOption', { params: obj })
//修改投票信息接口
export const editVote = (obj) => http.post('/vote/editVote', obj)