Browse Source

答题控制正确与否都不可更改

huangtao 3 years ago
parent
commit
d369fa1bc3

+ 8 - 7
src/views/home/answer/page-answer-recruit.vue

@@ -34,7 +34,7 @@
         <div class="exam-question-describe">
           {{
             examQuestionList[answerIndex].questionContent ||
-            examQuestionList[answerIndex].content
+              examQuestionList[answerIndex].content
           }}
         </div>
         <!-- 答题列表 -->
@@ -42,8 +42,9 @@
         <div
           v-if="
             examQuestionList[answerIndex].type === questionType.TrueOrFalse ||
-            examQuestionList[answerIndex].type === questionType.singleChoice ||
-            examQuestionList[answerIndex].type === questionType.multipleChoice
+              examQuestionList[answerIndex].type ===
+                questionType.singleChoice ||
+              examQuestionList[answerIndex].type === questionType.multipleChoice
           "
           class="exam-question-options"
         >
@@ -54,7 +55,7 @@
               'exam-question-options-item': true,
               'exam-question-options-item-checked': answerValue.includes(item),
               'exam-question-options-false':
-                answerValue.includes(item) && answerStatus[answerIndex] === 2,
+                answerValue.includes(item) && answerStatus[answerIndex] === 2
             }"
             @click="handleExamQuestionOptionsItemFun(item)"
           >
@@ -66,7 +67,7 @@
           v-if="examQuestionList[answerIndex].type === questionType.gapFilling"
           class="exam-question-gapFilling"
           :class="{
-            'exam-question-gapFilling-false': answerStatus[answerIndex] === 2,
+            'exam-question-gapFilling-false': answerStatus[answerIndex] === 2
           }"
         >
           <textarea
@@ -443,8 +444,8 @@ export default {
     },
     // 操作:作答了某个选项
     handleExamQuestionOptionsItemFun(value, index) {
-      // 答了的不允许修改
-      if (this.answerStatus[this.answerIndex] === 2) {
+      // 答了的不允许修改
+      if ([1, 2].includes(this.answerStatus[this.answerIndex])) {
         return;
       }
       let answerQuestionType = this.examQuestionList[this.answerIndex].type;

+ 4 - 2
src/views/home/learn/page-learn-child.vue

@@ -93,7 +93,7 @@ export default {
   mounted() {
     this.getChildList();
   },
-  destroyed () {},
+  destroyed() {},
   watch: {
     // 监听:工种
     chooseEngneeringWork(value) {
@@ -168,7 +168,9 @@ export default {
       });
       this.contentList = datas;
     },
-    onLoad() { this.getContentList(); },
+    onLoad() {
+      this.getContentList();
+    },
     chooseContent(index) {
       this.$router.push({
         name: "learn-content",