|
@@ -650,6 +650,11 @@ export function useExamTest() {
|
|
|
interfaceErrVisible.value = true
|
|
|
return
|
|
|
}
|
|
|
+ //多余100道题目的切割
|
|
|
+ if(res.data.rows.length>100){
|
|
|
+ res.data.rows.splice(100)
|
|
|
+
|
|
|
+ }
|
|
|
list.value = res.data.rows;
|
|
|
}).catch(err=>{
|
|
|
interfaceErrVisible.value = true
|
|
@@ -673,11 +678,6 @@ export function useExamTest() {
|
|
|
wrongQuestion,
|
|
|
wrongQuestionIndex,
|
|
|
correctAnswerVisible,
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
|