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 @@
{{ setting.title }}
- + - +
{{ 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; /* 文字加粗 */