JayChou 1 day ago
commit a6d4c99252
  1. 7
      src/views/subjectTest/index.vue

@ -128,7 +128,7 @@ const xnOptionsList = computed(() => {
const selectedOption = ref<{ oid: any; qid: string }[]>(Array(questions.value.length).fill(null));
//
const selectOption = (option: any) => {
const selectOption = async (option: any) => {
if (complete.value == false) {
if (questions.value.length > 0) {
const currentQuestion = questions.value[currentQuestionIndex.value];
@ -138,6 +138,11 @@ const selectOption = (option: any) => {
};
console.log(selectedOption.value[currentQuestionIndex.value].oid, option);
}
//
const res: any = await checkapi(selectedOption.value[currentQuestionIndex.value]);
if (res.result !== "success") {
ElMessage.error('回答错误')
}
}
}
const score = ref(0); // 0

Loading…
Cancel
Save