natasha пре 1 година
родитељ
комит
09ff7a77fd
1 измењених фајлова са 4 додато и 1 уклоњено
  1. 4 1
      src/views/exercise_questions/preview/WordDictationPreview.vue

+ 4 - 1
src/views/exercise_questions/preview/WordDictationPreview.vue

@@ -170,7 +170,10 @@ export default {
           item.pinyin_arr.push(obj);
         });
         if (this.isJudgingRightWrong) {
-          item.imgArr = this.answer.answer_list[index].strokes_content_list;
+          item.imgArr =
+            this.answer.answer_list[index] && this.answer.answer_list[index].strokes_content_list
+              ? this.answer.answer_list[index].strokes_content_list
+              : arr;
         } else {
           item.imgArr = arr;
         }