From 92a5087cff2821903314f092209a4c792bc28c3e Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期一, 01 七月 2024 13:48:00 +0800
Subject: [PATCH] fix:修改考试列表type

---
 src/views/exam/components/answer-main/answer-fill/index.vue |   30 +++++++++++++++++-------------
 1 files changed, 17 insertions(+), 13 deletions(-)

diff --git a/src/views/exam/components/answer-main/answer-fill/index.vue b/src/views/exam/components/answer-main/answer-fill/index.vue
index 0712750..773dfab 100644
--- a/src/views/exam/components/answer-main/answer-fill/index.vue
+++ b/src/views/exam/components/answer-main/answer-fill/index.vue
@@ -4,10 +4,12 @@
       <ExamInfo class="mb-5" :questionIndex="currentIndex" :activeQuestion="activeQuestion"></ExamInfo>
 
       <div class="answer-content">
-        <div class="answer-item flex" v-for="item, index in activeQuestion.questionItemList" @click="answerClick(item)"
+        <div class="answer-item flex" v-for="item, index in activeQuestion.questionItemList"
           :class="answerState(item)">
           <div class="answer-icon flex flex-col justify-center items-center flex-shrink-0">{{ item.prefix }}</div>
-          <div class="answer-text text-gray-700">{{ item.content }}</div>
+          <div class="answer-text text-gray-700">
+            <el-input v-model="answerList[`answer${index}`]" @focus="answerClick(item)" maxlength="30" placeholder="璇疯緭鍏ュ唴瀹�"></el-input>
+          </div>
         </div>
       </div>
 
@@ -16,17 +18,23 @@
 </template>
 
 <script setup>
-import { ref } from 'vue';
+import { ref,watchEffect } from 'vue';
 import { storeToRefs } from 'pinia';
 import ExamInfo from '@/components/ExamInfo/index.vue';
 import { useExamStore } from '@/store/index.js';
 const examStore = useExamStore();
+
+const answerList = ref({
+  'answer0': ''
+});
+
 
 const { currentType, currentIndex } = storeToRefs(examStore);
 
 const activeQuestion = ref(examStore.getActiveQuestion);
 
 const answerClick = (item) => {
+  return;
   if (item) {
     if (item.isActive) {
       item.isActive = !item.isActive;
@@ -57,6 +65,12 @@
   return activeQuestion.value.questionItemList.find(item => item.isActive);
 }
 
+watchEffect(() => {
+  activeQuestion.value.questionItemList.forEach((item,index) => {
+    answerList[`answer${index}`] = '';
+  })
+})
+
 
 </script>
 
@@ -67,19 +81,9 @@
   border: 1px solid #DCDFE6;
   overflow: hidden;
   margin-bottom: 20px;
-  cursor: pointer;
 
   &:last-of-type {
     margin-bottom: 0;
-  }
-
-  &:hover {
-    border-color: #3680fa;
-
-    .answer-icon {
-      color: #3680fa;
-      border-color: #3680fa;
-    }
   }
 
 

--
Gitblit v1.8.0