mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 12:56:45 +08:00
25 lines
1.5 KiB
JavaScript
25 lines
1.5 KiB
JavaScript
import http from "./config";
|
|
// 创建考试信息接口
|
|
export const createExamination = (obj) => http.post('/examination/createExamination', obj);
|
|
// 根据Id删除考试信息
|
|
export const deleteExaminationById = (obj) => http.post('/examination/deleteExaminationById', obj);
|
|
// 根据ID获取考试信息详情
|
|
export const queryExaminationDetailById = (obj) => http.post('/examination/queryExaminationDetailById', obj, {
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
|
|
}
|
|
});
|
|
// 查询用户答卷信息-三方
|
|
export const queryUserAnswerDetail = (id) => http.get(`/examination/updateExamination?aloneId=${id}`);
|
|
// 查询用户答卷列表-三方
|
|
export const queryUserAnswerPageDetailList = (obj) => http.post('/examination/queryUserAnswerPageDetailList', obj);
|
|
// 获取试卷列表接口-三方
|
|
export const queryExaminationPaperList = (obj) => http.post('/examination/queryExaminationPaperList', obj);
|
|
// 考试列表查询接三方
|
|
export const queryExaminationList = (obj) => http.post('/examination/queryExaminationList', obj);
|
|
// 获取考试任务列表的接口-三方
|
|
export const queryExaminationAloneExtendList = (obj) => http.post('/examination/queryExaminationAloneExtendList', obj);
|
|
// 对接三方考试任务保存接口-三方
|
|
export const examinationTaskSave = (obj) => http.post('/examination/examinationTaskSave', obj);
|
|
//编辑考试信息
|
|
export const updateExamination = (obj) => http.post('/examination/updateExamination', obj); |