feat: 投票题干获取,成员列表批量删除,查看,搜索,模板编辑修改

This commit is contained in:
王熙东
2022-11-17 18:53:50 +08:00
parent 0acb1f027d
commit 132381cc88
6 changed files with 1557 additions and 28 deletions

View File

@@ -63,7 +63,9 @@ export const deleteVoteStemOption = (obj) => http.post('/vote/deleteVoteStemOpti
export const editVote = (obj) => http.post('/vote/editVote', obj)
//根据题干ID获取题干信息
export const queryStemByStemId = (obj) => http.post('/vote/queryStemByStemId', { params: obj })
export const queryStemByStemId = (obj) => http.post('/vote/queryStemByStemId', obj,{
headers: {'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'}
})
//修改题干信息接口
export const updateStemMessage = (obj) => http.post('/vote/updateStemMessage', obj);