From b8977710b6d7463a8f68ad0c86a4bbd02841493f Mon Sep 17 00:00:00 2001 From: luohairen <3399054449@qq.com> Date: 星期一, 11 十一月 2024 18:03:21 +0800 Subject: [PATCH] 错题详情 --- src/views/wrong-list/data-list/index.vue | 27 ++++++++++++++++++++------- 1 files changed, 20 insertions(+), 7 deletions(-) diff --git a/src/views/wrong-list/data-list/index.vue b/src/views/wrong-list/data-list/index.vue index f398287..943de5f 100644 --- a/src/views/wrong-list/data-list/index.vue +++ b/src/views/wrong-list/data-list/index.vue @@ -48,7 +48,7 @@ <el-button type="primary" size="small" - @click="checkWrong(row.id)" + @click="checkWrong(row)" > 鏌ョ湅閿欓 </el-button> @@ -62,6 +62,9 @@ <script setup> import { ref } from 'vue'; +import { useRouter } from 'vue-router'; +import { useGradeStore } from '@/store/index.js'; +import { getGradeInfo } from '@/api/modules/grade.js'; // dataList const props = defineProps({ @@ -71,13 +74,23 @@ } }); const loading = ref(false); +const gradeStore = useGradeStore(); +const router = useRouter(); -const checkWrong = (id) => { - router.push({ - name: 'wrong-list', - params: { - examId: id - } +const checkWrong = (row) => { + getGradeInfo(row.id).then((res) => { + const {id,examName, score,navbar,titleItems} = res.data; + gradeStore.setExamInfo({ + id, + examName, + score, + navbar + }); + gradeStore.setExamDetail(titleItems); + gradeStore.initExam(res.data.titleItems[0].questionType); + router.push('/grade'); + }).catch(err => { + }); }; -- Gitblit v1.8.0