From 5ca5a8115ca96e2d24ae7ca4745c8a755a1254ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B0=E5=B2=A9?= Date: Thu, 21 Aug 2025 13:34:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=80=9A=E7=94=A8=E7=AD=94?= =?UTF-8?q?=E9=A2=98=E7=BB=84=E4=BB=B63?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/examination/subject.vue | 3 +-- src/pages/examination/index.vue | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/examination/subject.vue b/src/components/examination/subject.vue index ebe00c50..bba727e9 100644 --- a/src/components/examination/subject.vue +++ b/src/components/examination/subject.vue @@ -55,7 +55,6 @@ 正确答案:{{ correctResultLabel.join('') }} - 你的答案: {{ myResultLabel.join('') }} @@ -78,7 +77,7 @@ backgroundColor: '#0066FF', border: '1rpx solid rgb(12, 123, 245)' }; - + const emit = defineEmits(['subject_click']); const props = defineProps({ modelValue: { diff --git a/src/pages/examination/index.vue b/src/pages/examination/index.vue index 58e71bee..f0da6b7e 100644 --- a/src/pages/examination/index.vue +++ b/src/pages/examination/index.vue @@ -296,8 +296,8 @@ // 交卷按钮点击,打开交卷确认框 const hand_in_paper_button_click = () => { console.log('点击交卷', paperData); - console.log('点击交卷topicList', topicList); - return; + // console.log('点击交卷topicList', topicList); + // return; // 判断是否完成所有题目 const completeList = topicList .filter((res) => !!(Array.isArray(res.my_answer) ? res.my_answer.length : res.my_answer))