From b23354b2ad608bb301251de282701c5fe9c25d75 Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期一, 01 七月 2024 14:33:09 +0800
Subject: [PATCH] fix:修改进度判断
---
src/views/exam/components/answer-main/answer-fill/index.vue | 28 +++++++++++++++-------------
1 files changed, 15 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..7ce7988 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,21 @@
</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({});
+
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 +63,12 @@
return activeQuestion.value.questionItemList.find(item => item.isActive);
}
+watchEffect(() => {
+ activeQuestion.value.questionItemList.forEach((item,index) => {
+ answerList[`answer${index}`] = '';
+ })
+})
+
</script>
@@ -67,19 +79,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