2024-08-23 16:00:43 +08:00
|
|
|
import request from '@/utils/request'
|
2024-08-07 16:43:03 +08:00
|
|
|
|
|
|
|
|
// 我的消息
|
|
|
|
|
export function getNoticeAnnoByUserId(data) {
|
2024-08-23 16:00:43 +08:00
|
|
|
return request({
|
2024-08-26 21:46:08 +08:00
|
|
|
url: '/exam-student/app/index/getNoticeAnnoByUserId',
|
2024-08-23 16:00:43 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 考试-列表 /personalCenter/getStudentExamList
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getStudentExamList(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/personalCenter/getStudentExamList',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 16:00:43 +08:00
|
|
|
|
|
|
|
|
// 考试-题目 /studentExam/getExamQuestionList
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getExamQuestionList(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentExam/getExamQuestionList',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 16:00:43 +08:00
|
|
|
|
|
|
|
|
// 考试-做题 /studentExam/insertQuestionAnswerById
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function insertQuestionAnswerById(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentExam/insertQuestionAnswerById',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 16:00:43 +08:00
|
|
|
|
|
|
|
|
// 考试-交卷+结果 /studentExam/commitExamByRecordId
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function commitExamByRecordId(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentExam/commitExamByRecordId',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 16:00:43 +08:00
|
|
|
|
|
|
|
|
// 考试-查询结果列表 /studentExam/getExamRecordById
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getExamRecordById(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentExam/getExamRecordById',
|
|
|
|
|
// method: 'get',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 16:00:43 +08:00
|
|
|
|
|
|
|
|
// 考试-结果详情 studentExam/getExamRecordAnswer
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getExamRecordAnswer(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentExam/getExamRecordAnswer',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 16:00:43 +08:00
|
|
|
|
|
|
|
|
// 考试-排名 studentExam/getExamRankById
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getExamRankById(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentExam/getExamRankById',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 16:00:43 +08:00
|
|
|
|
|
|
|
|
// 练习-列表 /personalCenter/getStudentPracticeList
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getStudentPracticeList(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/personalCenter/getStudentPracticeList',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-总览 /studentPractice/getPracticeQuestionRate
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getPracticeQuestionRate(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/getPracticeQuestionRate',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-聚合数据 /studentPractice/getPracticeItData
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getPracticeItData(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/getPracticeItData',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-题目 studentPractice/getPracticeQuestion
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getPracticeQuestion(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/getPracticeQuestion',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-答题 studentPractice/insertPracticeAnswerById
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function insertPracticeAnswerById(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/insertPracticeAnswerById',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-前后题-跳题 studentPractice/changeQuestion
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function changeQuestion(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/changeQuestion',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-弹框序号跳题 /studentPractice/getPracticeQuestionList
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getPracticeQuestionList(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/getPracticeQuestionList',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-保存练习时长 /studentPractice/savePracticeDuration
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function savePracticeDuration(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/savePracticeDuration',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-23 20:10:40 +08:00
|
|
|
|
|
|
|
|
// 练习-错题消除 studentPractice/updateRemoveRecordData
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function updateRemoveRecordData(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/studentPractice/updateRemoveRecordData',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-24 18:27:34 +08:00
|
|
|
|
|
|
|
|
// 学习项目-列表 /personalCenter/getStudentStudyWorkList
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function getStudentStudyWorkList(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/personalCenter/getStudentStudyWorkList',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-24 18:27:34 +08:00
|
|
|
|
|
|
|
|
// 学习项目-目录 /studyWork/StudyWorkAll
|
2024-08-26 21:46:08 +08:00
|
|
|
// export function studyWorkAll(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/studyWork/StudyWorkAll',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// 学习项目-进度 /student/updStudyDuration
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function updStudyDuration(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/student/updStudyDuration',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2024-08-26 21:46:08 +08:00
|
|
|
|
|
|
|
|
// 学习项目-考试/学习 结束 /student/updStudyDurationExamPractice
|
2024-08-28 09:51:05 +08:00
|
|
|
// export function updStudyDurationExamPractice(params) {
|
|
|
|
|
// return request({
|
|
|
|
|
// url: '/exam-student/student/updStudyDurationExamPractice',
|
|
|
|
|
// method: 'post',
|
|
|
|
|
// data: params
|
|
|
|
|
// })
|
|
|
|
|
// }
|