src/store/modules/exam.js
@@ -55,7 +55,7 @@ const setQuestionAnswer = (type, index, answer) => { const temp = examDetail.value.find(item => item.questionType === type); if (temp) { temp.questionList[index].correct = answer; temp.questionList[index].answer = answer; } };