mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 23:06:47 +08:00
添案例接口添多数据情况批量标记弹窗封装新增查答卷查投票抽屉考勤面管添在线注释及清空考和测管内容判断
This commit is contained in:
19
src/api/indexTest.js
Normal file
19
src/api/indexTest.js
Normal file
@@ -0,0 +1,19 @@
|
||||
import http from "./config";
|
||||
|
||||
|
||||
//创建考试信息接口
|
||||
export const createExamination = (obj) => http.post('/examination/createExamination',obj);
|
||||
//根据Id删除考试信息
|
||||
export const deleteExaminationById = (obj) => http.post('/examination/deleteExaminationById',{params:obj});
|
||||
//根据ID获取考试信息详情
|
||||
export const queryExaminationDetailById = (obj) => http.post('/examination/queryExaminationDetailById',{params:obj});
|
||||
//获取考试试卷
|
||||
// export const queryExaminationPaper = (obj) => http.post('/examination/queryExaminationPaper',obj);
|
||||
export const queryExaminationPaper = (obj) => http.post('/examination/queryExaminationPaperList',obj);
|
||||
//修改考试信息接口
|
||||
export const updateExamination = (obj) => http.post('/examination/updateExamination',obj,{
|
||||
header:{
|
||||
'token': '123',
|
||||
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user