| | |
| | | const currentIndex = ref(0); |
| | | |
| | | const getActiveQuestion = computed(() => { |
| | | // console.log("sb", currentType.value) |
| | | const temp = examDetail.value.find(item => item.questionType === currentType.value); |
| | | // console.log(temp, "dssss") |
| | | if (temp) { |
| | | return temp.questionList[currentIndex.value]; |
| | | } |
| | |
| | | const setExamDetail = (detail) => { |
| | | examDetail.value = detail; |
| | | }; |
| | | const initExam = () => { |
| | | const initExam = (questionType) => { |
| | | currentIndex.value = 0; |
| | | currentType.value = 1; |
| | | currentType.value = questionType; |
| | | } |
| | | return { |
| | | examInfo, |