From 98f494cf633e3acf5c20f3e9de0d708f2a6c2045 Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期五, 05 七月 2024 09:39:59 +0800
Subject: [PATCH] feat:视频浏览

---
 src/views/grade/components/answer-main/answer-determine/index.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/grade/components/answer-main/answer-determine/index.vue b/src/views/grade/components/answer-main/answer-determine/index.vue
index 5f23935..e29e3f8 100644
--- a/src/views/grade/components/answer-main/answer-determine/index.vue
+++ b/src/views/grade/components/answer-main/answer-determine/index.vue
@@ -1,6 +1,6 @@
 <!-- 鍒ゆ柇棰� -->
 <template>
-  <div class="answer-container w-full h-full">
+  <div class="answer-container w-full h-full flex">
     <el-scrollbar class="flex-1 mr-4">
       <ExamInfo class="mb-5" :questionIndex="currentIndex" :activeQuestion="activeQuestion"></ExamInfo>
 
@@ -38,12 +38,12 @@
 import { ref, computed } from 'vue';
 import { storeToRefs } from 'pinia';
 import ExamInfo from '@/components/ExamInfo/index.vue';
-import { useExamStore } from '@/store/index.js';
-const examStore = useExamStore();
+import { useGradeStore } from '@/store/index.js';
+const gradeStore = useGradeStore();
 
-const { currentType, currentIndex } = storeToRefs(examStore);
+const { currentType, currentIndex } = storeToRefs(gradeStore);
 
-const activeQuestion = ref(examStore.getActiveQuestion);
+const activeQuestion = ref(gradeStore.getActiveQuestion);
 
 
 const answerState = (item) => {

--
Gitblit v1.8.0