dusenyao 1 anno fa
parent
commit
255a293549
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/views/exercise_questions/answer/index.vue

+ 2 - 2
src/views/exercise_questions/answer/index.vue

@@ -400,8 +400,8 @@ export default {
         if (is_fill_answer === 'true') {
           this.$nextTick().then(() => {
             this.$refs.exercise?.[0].showAnswer(
-              this.answer_mode === 1 && !this.isTeacherAnnotations,
-              this.user_answer_record_info.correct_answer_show_mode === 1 && !this.isTeacherAnnotations,
+              this.answer_mode === 1,
+              this.user_answer_record_info.correct_answer_show_mode === 1,
               content.length > 0 ? JSON.parse(content) : null,
             );
           });