From d8074e823160d05735f68db9c0db98319d7bf9aa Mon Sep 17 00:00:00 2001
From: Ly <503441659@qq.com>
Date: Wed, 2 Apr 2025 17:33:18 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B7=A6=E5=8F=B3=E7=AE=AD=E5=A4=B4=E6=94=B9?=
=?UTF-8?q?=E4=B8=BA=E4=B8=8A=E4=B8=80=E9=A2=98=E4=B8=8B=E4=B8=80=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/subjectTest/index.vue | 38 ++++++++++++++++-----------------
1 file changed, 18 insertions(+), 20 deletions(-)
diff --git a/src/views/subjectTest/index.vue b/src/views/subjectTest/index.vue
index f6a62fa..e290783 100644
--- a/src/views/subjectTest/index.vue
+++ b/src/views/subjectTest/index.vue
@@ -4,9 +4,9 @@
第{{ currentSum }}题
@@ -38,6 +38,8 @@
+
+
@@ -54,7 +56,7 @@ import { ref, computed, onMounted, onUnmounted } from "vue"
import { ElMessage } from 'element-plus'
import { useRouter } from 'vue-router';
const setting = settingStore();
-//左箭头
+//上一题
const SubLeft = () => {
console.log(currentQuestionIndex.value)
if (currentQuestionIndex.value >= 1) {
@@ -63,12 +65,11 @@ const SubLeft = () => {
ElMessage.warning('无法上翻')
}
}
-//右箭头
+//下一题
const SubRight = async () => {
- console.log(complete.value,'11111111')
+ console.log(selectedOption.value,'11111111')
if(complete.value == false){
const res: any = await checkapi(selectedOption.value[currentQuestionIndex.value]);
- console.log(selectedOption.value);
console.log(res, 'res')
// 如果答对了,进入下一题
if (res.result == "success") {
@@ -80,11 +81,7 @@ const SubRight = async () => {
}
}
else {
- if (selectedOption.value[currentQuestionIndex.value] == null) {
- ElMessage.warning('请先答题')
- } else {
ElMessage.error('回答错误')
- }
}
}else{
if (currentSum.value < questions.value.length) {
@@ -97,10 +94,15 @@ const SubRight = async () => {
}
const questions = ref([]);
+// 初始化为一个数组,数组长度与 questions.value 的长度一致,每个元素初始值为 null
+const selectedOption = ref<{ oid: any; qid: any }[]>([]);
+
const currentList = async () => {
const res: any = await subTestapi();
questions.value = res.result
- console.log(res.result)
+ selectedOption.value = Array.from({ length: questions.value.length }, () => ({ oid: '', qid: '' }))
+ console.log(selectedOption.value,'selectedOption');
+
// console.log(questions.value[0].xnOptionsList[0].id)
// console.log(questions.value,'questions1.value')
}
@@ -120,12 +122,8 @@ const xnOptionsList = computed(() => {
if (questions.value.length > 0) {
return questions.value[currentQuestionIndex.value].xnOptionsList
}
- console.log(selectedOption.value)
return [];
})
-// 当前选中的按钮索引
-// 初始化为一个数组,数组长度与 questions.value 的长度一致,每个元素初始值为 null
-const selectedOption = ref<{ oid: any; qid: string }[]>(Array(questions.value.length).fill(null));
//选中逻辑
const selectOption = async (option: any) => {
@@ -240,7 +238,7 @@ const handleRecreate = () => {
border: none;
cursor: pointer;
position: absolute;
- right: 0;
+ right: 18%;
/* 紧靠右部 */
top: 40%;
/* 垂直居中*/
@@ -256,7 +254,7 @@ const handleRecreate = () => {
border: none;
cursor: pointer;
position: absolute;
- left: 0;
+ left: 18%;
/* 紧靠左部 */
top: 40%;
/* 垂直居中*/
@@ -416,7 +414,7 @@ const handleRecreate = () => {
/* 水平排列按钮 */
justify-content: center;
/* 水平居中 */
- gap: 450px;
+ gap: 20px;
/* 按钮之间的间距 */
margin-top: 50px;
}
@@ -431,8 +429,8 @@ const handleRecreate = () => {
/* 移除边框 */
cursor: pointer;
/* 鼠标悬停时显示手型 */
- width: 300px;
- height: 41px;
+ width: 255px;
+ height: 35px;
font-size: 18px;
font-weight: bold;
/* 文字加粗 */