From e68eebdf0a7cd3162eb0fac83b39c446bd665b12 Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期五, 24 五月 2024 09:09:24 +0800 Subject: [PATCH] Merge branch 'master' into dev-zhang --- src/views/exam/gradeDetails/list.vue | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/views/exam/gradeDetails/list.vue b/src/views/exam/gradeDetails/list.vue index 945de14..b64c59d 100644 --- a/src/views/exam/gradeDetails/list.vue +++ b/src/views/exam/gradeDetails/list.vue @@ -36,7 +36,7 @@ import { mapGetters, mapState, mapActions } from 'vuex' import Pagination from '@/components/Pagination' import examPaperApi from '@/api/examPaper' -import AchievementStatistics from "@/api/AchievementStatistics"; +import AchievementStatistics from '@/api/AchievementStatistics' export default { components: { Pagination }, @@ -45,22 +45,26 @@ queryParam: { pageIndex: 1, pageSize: 10, - id:'', - userId:'' + start: null, + end: null, + id: '', + userId: '' }, subjectFilter: null, listLoading: true, tableData: [], - total: 0, + total: 0 } }, created () { }, mounted () { - this.queryParam.id=this.$route.query.id - this.queryParam.userId=this.$route.query.userId - this.queryParam.createUser=this.$route.query.createUser + this.queryParam.id = this.$route.query.id + this.queryParam.userId = this.$route.query.userId + this.queryParam.createUser = this.$route.query.createUser + this.queryParam.start = this.$route.query.start + this.queryParam.end = this.$route.query.end this.search() }, methods: { @@ -77,9 +81,9 @@ this.queryParam.pageIndex = re.pageNum this.listLoading = false }) - }, + } - }, + } } </script> -- Gitblit v1.8.0