From fbd9c491ebe32558c8fcefffeaa103d2fcb79a27 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 31 十月 2024 20:40:48 +0800 Subject: [PATCH] 查看试卷bug --- src/store/modules/grade.js | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/store/modules/grade.js b/src/store/modules/grade.js index 737f735..3fd06cd 100644 --- a/src/store/modules/grade.js +++ b/src/store/modules/grade.js @@ -19,7 +19,9 @@ 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]; } @@ -32,9 +34,9 @@ const setExamDetail = (detail) => { examDetail.value = detail; }; - const initExam = () => { + const initExam = (questionType) => { currentIndex.value = 0; - currentType.value = 1; + currentType.value = questionType; } return { examInfo, -- Gitblit v1.8.0