From d95c23683388adbb8bd511f6d5da52bbec16ffd0 Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期三, 19 六月 2024 10:01:05 +0800
Subject: [PATCH] feat(考试):答题卡选项状态变化

---
 src/views/exam/components/answer-main/answer-single/index.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/exam/components/answer-main/answer-single/index.vue b/src/views/exam/components/answer-main/answer-single/index.vue
index 288bca2..b67815a 100644
--- a/src/views/exam/components/answer-main/answer-single/index.vue
+++ b/src/views/exam/components/answer-main/answer-single/index.vue
@@ -16,13 +16,13 @@
 </template>
 
 <script setup>
-import { ref, onMounted } from 'vue';
+import { ref } from 'vue';
 import {storeToRefs} from 'pinia';
 import ExamInfo from '@/components/ExamInfo/index.vue';
 import {useExamStore} from '@/store/index.js';
 const examStore = useExamStore();
 
-const {currentType,currentIndex,examDetail} = storeToRefs(examStore);
+const {currentType,currentIndex} = storeToRefs(examStore);
 
 const activeQuestion = ref(examStore.getActiveQuestion);
 

--
Gitblit v1.8.0