From 525f4715c4560b94f3bd0071a6e4e991c3fdf68f Mon Sep 17 00:00:00 2001 From: 刘鸿 Date: Wed, 11 Dec 2024 17:05:16 +0800 Subject: [PATCH] fix:修复分页异常 --- src/views/basic/askTestQuestion/index.vue | 6 ++---- src/views/basic/askTestQuestion/recycle.vue | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/views/basic/askTestQuestion/index.vue b/src/views/basic/askTestQuestion/index.vue index 2320b1d..b8f9198 100644 --- a/src/views/basic/askTestQuestion/index.vue +++ b/src/views/basic/askTestQuestion/index.vue @@ -580,10 +580,8 @@ export default { end: null, type: this.dataType, //试卷类型 share: this.tabType, //分享类型 - }; - - - + }; + this.listPage.page = 1; queryParams.classId = this.query.class; queryParams.subjectName = this.query.subject; queryParams.tagId = this.query.tagId; diff --git a/src/views/basic/askTestQuestion/recycle.vue b/src/views/basic/askTestQuestion/recycle.vue index 87e9112..4557548 100644 --- a/src/views/basic/askTestQuestion/recycle.vue +++ b/src/views/basic/askTestQuestion/recycle.vue @@ -283,7 +283,7 @@ export default { type: this.dataType, //试卷类型 share: this.tabType, //分享类型 }; - + this.listPage.page = 1; queryParams.classId = this.query.class; queryParams.subjectName = this.query.subject; queryParams.tagId = this.query.tagId; -- libgit2 0.21.4