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))