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