From f7b2d928f99435c798d12e688d470c69f2f5c234 Mon Sep 17 00:00:00 2001
From: luohairen <3399054449@qq.com>
Date: 星期二, 12 十一月 2024 21:20:52 +0800
Subject: [PATCH] 优化错题查询
---
src/views/wrong-list/data-list/index.vue | 57 ++++++++++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 46 insertions(+), 11 deletions(-)
diff --git a/src/views/wrong-list/data-list/index.vue b/src/views/wrong-list/data-list/index.vue
index c32bc52..f6b7ede 100644
--- a/src/views/wrong-list/data-list/index.vue
+++ b/src/views/wrong-list/data-list/index.vue
@@ -36,7 +36,7 @@
<el-table-column
align="center"
width="150px"
- label="璇曞嵎鍚嶇О"
+ label="鑰冭瘯鍚嶇О"
prop="examName"
></el-table-column>
<el-table-column
@@ -44,10 +44,17 @@
align="center"
fixed="right"
>
- <template slot-scope="scope">
- <el-button type="primary" size="large" @click="checkWrong(scope.row.id)">鏌ョ湅閿欓</el-button>
+ <template #default="{ row }">
+ <el-button
+ type="primary"
+ size="small"
+ @click="checkWrong(row)"
+ >
+ 鏌ョ湅閿欓
+ </el-button>
</template>
</el-table-column>
+
</el-table>
</el-scrollbar>
</div>
@@ -55,6 +62,9 @@
<script setup>
import { ref } from 'vue';
+import { useRouter } from 'vue-router';
+import { useGradeStore } from '@/store/index.js';
+import { checkWrongInfo } from '@/api/modules/grade.js';
// dataList
const props = defineProps({
@@ -64,15 +74,40 @@
}
});
const loading = ref(false);
+const gradeStore = useGradeStore();
+const router = useRouter();
-const checkWrong = (id) => {
- router.push({
- name: 'wrong-list',
- params: {
- examId: id
- }
- });
-};
+const checkWrong = (row) => {
+ checkWrongInfo(row.id, row).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 => {
+
+ })
+}
+ // 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 => {
+ //
+ // });
+
// 棰樼洰绫诲瀷鏍煎紡鍖�
const questionTypeFormatter = (row,column,cellValue) => {
--
Gitblit v1.8.0