From 3f594b896674dcd8f1324d0a2d57fb92fca0d380 Mon Sep 17 00:00:00 2001 From: Ly <503441659@qq.com> Date: Wed, 2 Apr 2025 16:34:13 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=89=E6=8B=A9=E5=90=8E=E7=9B=B4=E6=8E=A5?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/subjectTest/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/subjectTest/index.vue b/src/views/subjectTest/index.vue index 8f04863..f6a62fa 100644 --- a/src/views/subjectTest/index.vue +++ b/src/views/subjectTest/index.vue @@ -128,7 +128,7 @@ const xnOptionsList = computed(() => { const selectedOption = ref<{ oid: any; qid: string }[]>(Array(questions.value.length).fill(null)); //选中逻辑 -const selectOption = (option: any) => { +const selectOption = async (option: any) => { if (complete.value == false) { if (questions.value.length > 0) { const currentQuestion = questions.value[currentQuestionIndex.value]; @@ -138,6 +138,11 @@ const selectOption = (option: any) => { }; console.log(selectedOption.value[currentQuestionIndex.value].oid, option); } + //选择答案错误时给出提示 + const res: any = await checkapi(selectedOption.value[currentQuestionIndex.value]); + if (res.result !== "success") { + ElMessage.error('回答错误') + } } } const score = ref(0); // 初始化分数为0