|
@@ -51,7 +51,7 @@ const exam = {
|
|
|
})
|
|
|
|
|
|
},
|
|
|
- //查询模拟考试题库
|
|
|
+ //查询模拟考试题库(旧)
|
|
|
studentQuestionInfoSelectTestQuestionInfo(params) {
|
|
|
return request({
|
|
|
url: "open-api/question/info/selectTestK14QuestionInfoList",
|
|
@@ -59,7 +59,15 @@ const exam = {
|
|
|
params
|
|
|
})
|
|
|
},
|
|
|
- //查询题库
|
|
|
+ //查询模拟考试题库(新)
|
|
|
+ studentQuestion2InfoSelectTestQuestionInfo(params) {
|
|
|
+ return request({
|
|
|
+ url: "open-api/question2/info/selectTestK14QuestionInfoList",
|
|
|
+ method: 'get',
|
|
|
+ params
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //查询题库(旧)
|
|
|
studentQuestionInfoList(params) {
|
|
|
return request({
|
|
|
url: "student/question/info/list",
|
|
@@ -67,6 +75,14 @@ const exam = {
|
|
|
params
|
|
|
})
|
|
|
},
|
|
|
+ //查询题库(新)
|
|
|
+ studentQuestionInfoList(params) {
|
|
|
+ return request({
|
|
|
+ url: "student/question2/info/list",
|
|
|
+ method: 'get',
|
|
|
+ params
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
//新增模拟考成绩
|
|
|
studentScoreInfo(data) {
|
|
@@ -274,7 +290,7 @@ const exam = {
|
|
|
|
|
|
},
|
|
|
//根据城市获取区县
|
|
|
- studentExamInfoCountyCityId(cityId){
|
|
|
+ studentExamInfoCountyCityId(cityId) {
|
|
|
return request({
|
|
|
url: `student/exam/info/county/${cityId}`,
|
|
|
method: "get"
|
|
@@ -298,11 +314,11 @@ const exam = {
|
|
|
|
|
|
},
|
|
|
// 获取三力测试模拟考题
|
|
|
- studentThreeForceSelectTestQuestionInfoList(){
|
|
|
+ studentThreeForceSelectTestQuestionInfoList() {
|
|
|
return request({
|
|
|
url: `student/three/force/selectTestQuestionInfoList`,
|
|
|
method: "get",
|
|
|
-
|
|
|
+
|
|
|
})
|
|
|
}
|
|
|
//
|