完善考试页和开发考试结算页

This commit is contained in:
田岩
2025-08-13 18:03:33 +08:00
parent bdf96bb74b
commit a62a5f611e
24 changed files with 1215 additions and 88 deletions
+20
View File
@@ -12,5 +12,25 @@ export const startTraExamPapersInfo = (data) => {
data
});
};
// 提交试卷
export const commitPaperExam = (data) => {
return request({
url: base_url + '/traExamPapers/commitPaperExam',
method: 'post',
toastErrors: true,
data
});
};
// 试卷考试查分
export const queryPaperExamScore = (data) => {
return request({
url: base_url + '/traExamPapers/queryPaperExamScore',
method: 'post',
toastErrors: true,
data
});
};
+1 -1
View File
@@ -50,7 +50,7 @@ export const goto_login_fun = (from = 'http') => {
} else {
common.navigateTo('/pages/login/login')
}
}).finally(() => {
no_login_show_modal_state = false
})
+2 -1
View File
@@ -9,4 +9,5 @@ export const queryTraExamPapersPage = (data) => {
method: 'post',
data
});
};
};