|
@@ -62,6 +62,19 @@ function openApiquestionInfoSelectTestQuestionInfo(params: {
|
|
|
|
|
|
})
|
|
|
|
|
|
+}
|
|
|
+//查询模拟考试题库的新接口(通用)
|
|
|
+function openApiquestion2InfoSelectTestQuestionInfo(params: {
|
|
|
+ model:string,
|
|
|
+ subject: number,
|
|
|
+}): AxiosPromise<selectTestQuestionInfo.response> {
|
|
|
+ return request({
|
|
|
+ url: import.meta.env.MODE === "production" ?"https://jpcj.zzxcx.net/jpcj-admin/open-api/question2/info/selectTestK14QuestionInfoList":"https://jpcj1.zzxcx.net/jpcj-admin/open-api/question2/info/selectTestK14QuestionInfoList",
|
|
|
+ method: "get",
|
|
|
+ params
|
|
|
+
|
|
|
+ })
|
|
|
+
|
|
|
}
|
|
|
//查询用户信息
|
|
|
function studentUserInfo(): AxiosPromise<studentUserInfo.response> {
|
|
@@ -93,6 +106,7 @@ export default {
|
|
|
studentQuestionInfoSelectTestQuestionInfo,
|
|
|
studentUserInfo,
|
|
|
openApiquestionInfoSelectTestQuestionInfo,
|
|
|
+ openApiquestion2InfoSelectTestQuestionInfo,
|
|
|
questionTwoList,
|
|
|
studentEmailInfo
|
|
|
|