|
@@ -1,6 +1,15 @@
|
|
|
import request from '../request'
|
|
|
|
|
|
const exam = {
|
|
|
+ //获取题库分类
|
|
|
+ studentQuestion2InfoGetQuestionColumn(params) {
|
|
|
+ return request({
|
|
|
+ url: 'student/question2/info/getQuestionColumn',
|
|
|
+ method: 'get',
|
|
|
+ params
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
//获取顺序练习分类
|
|
|
studentQuestionInfoSelectSxQuestionInfo(params) {
|
|
|
return request({
|
|
@@ -76,9 +85,9 @@ const exam = {
|
|
|
})
|
|
|
},
|
|
|
//查询题库(新)
|
|
|
- studentQuestionInfoList(params) {
|
|
|
+ studentQuestion2InfoList(params) {
|
|
|
return request({
|
|
|
- url: "student/question/info/list",
|
|
|
+ url: "student/question2/info/list",
|
|
|
method: 'get',
|
|
|
params
|
|
|
})
|
|
@@ -191,6 +200,15 @@ const exam = {
|
|
|
data
|
|
|
})
|
|
|
|
|
|
+ },
|
|
|
+ //批量取题(新版)
|
|
|
+ studentQuestion2InfoGetQuestionInfoByIds(data) {
|
|
|
+ return request({
|
|
|
+ url: "student/question2/info/getQuestionInfoByIds",
|
|
|
+ method: "POST",
|
|
|
+ data
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
//小程序恢复云端错题到本机(根据用户获取错题)
|
|
|
studentQuestionWrongWrongCountByUser(params) {
|
|
@@ -252,6 +270,15 @@ const exam = {
|
|
|
params
|
|
|
})
|
|
|
|
|
|
+ },
|
|
|
+ //查询秘密卷
|
|
|
+ studentQuestion2InfoSelectMiQuestionInfoList(params) {
|
|
|
+ return request({
|
|
|
+ url: "student/question2/info/selectMiQuestionInfoList",
|
|
|
+ method: "get",
|
|
|
+ params
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
//获取考场省份
|
|
|
studentExamInfoGetProvice(params) {
|