【修改】出题知识点可选择,数据时效性,MYSQL判分语句增加默认权值

【增加】试卷任务参数,在已有的试卷抽卷
This commit is contained in:
YOHO\20373
2025-06-09 10:31:14 +08:00
parent ee776e7961
commit 41e5324bb9
49 changed files with 3727 additions and 2186 deletions

View File

@@ -29,7 +29,9 @@ export async function getPaper(id) {
export async function addPaper(params) {
return await request.get({ url: '/exam/paper/add' , params })
}
export async function addPaperBypaper(data) {
return await request.post({ url: '/exam/paper/addPaperBypaper' , data })
}
/**
* 修改试卷
*/

View File

@@ -5,10 +5,18 @@ import request from '@/config/axios'
*/
export async function pageTasks(params) {
return await request.get({ url: '/exam/task/list' , params })
}
export async function pageTaskPapers(params) {
return await request.get({ url: '/exam/task/listPaper' , params })
}
export async function checkType(data) {
return await request.post({ url: '/exam/task/checkType' , data })
}
/**
* 查询全部试卷任务
*/