|
|
|
@ -4,9 +4,9 @@ |
|
|
|
|
<div class="title">{{ setting.title }}</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 右边箭头 --> |
|
|
|
|
<button class="submit-right" @click="SubRight"></button> |
|
|
|
|
<!-- <button class="submit-right" @click="SubRight"></button> --> |
|
|
|
|
<!-- 左边按钮 --> |
|
|
|
|
<button class="submit-left" @click="SubLeft"></button> |
|
|
|
|
<!-- <button class="submit-left" @click="SubLeft"></button> --> |
|
|
|
|
<div class="question-body"> |
|
|
|
|
<div class="question"> |
|
|
|
|
第<span class="question-count">{{ currentSum }}</span>题 |
|
|
|
@ -38,6 +38,8 @@ |
|
|
|
|
</div> |
|
|
|
|
<div class="submit-buttons"> |
|
|
|
|
<button class="submit-btn" @click="resetAnswers">退出答题</button> |
|
|
|
|
<button class="submit-btn" @click="SubLeft">上一题</button> |
|
|
|
|
<button class="submit-btn" @click="SubRight">下一题</button> |
|
|
|
|
<button class="submit-btn" @click="submitAnswers" v-if="complete === false">提交成绩</button> |
|
|
|
|
</div> |
|
|
|
|
<el-dialog v-model="isVisible" :close-on-click-modal="false" :show-close="false"> |
|
|
|
@ -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<any[]>([]); |
|
|
|
|
// 初始化为一个数组,数组长度与 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; |
|
|
|
|
/* 文字加粗 */ |
|
|
|
|