|
@@ -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;
|