From 17809f9a37539333ecae05f95b0738afc97b729b Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 5 Jan 2023 15:16:18 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/thrsys/ThrInvWarehouse.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/thrsys/ThrInvWarehouse.vue b/src/views/thrsys/ThrInvWarehouse.vue index 191d629..620ddaa 100644 --- a/src/views/thrsys/ThrInvWarehouse.vue +++ b/src/views/thrsys/ThrInvWarehouse.vue @@ -411,6 +411,8 @@ export default { this.query = { name: "", status: "", + page:1, + limit:20, thirdSysFk: null }; this.getList(); From 29847e8765516bf3d3981649781fdb99b43f18aa Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 5 Jan 2023 15:51:45 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/thrsys/ThrCorps.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/thrsys/ThrCorps.vue b/src/views/thrsys/ThrCorps.vue index 926f1f8..58572bc 100644 --- a/src/views/thrsys/ThrCorps.vue +++ b/src/views/thrsys/ThrCorps.vue @@ -114,7 +114,9 @@ export default { }, getList() { - + if(!(this.filterQuery.unitId==null || this.filterQuery.name==null || this.filterQuery.thirdSys==null)){ + this.filterQuery.page=1 + } if (this.filterQuery.thirdSys == null) { this.$message.warning("请先选择第三方系统!") From b10bca8d15d828339992707666c13db436bf4688 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 5 Jan 2023 16:19:42 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/thrsys/ThrInvWarehouse.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/thrsys/ThrInvWarehouse.vue b/src/views/thrsys/ThrInvWarehouse.vue index 620ddaa..e93b9e5 100644 --- a/src/views/thrsys/ThrInvWarehouse.vue +++ b/src/views/thrsys/ThrInvWarehouse.vue @@ -421,6 +421,9 @@ export default { this.getList(); }, getList() { + if(this.query.key!=null || this.query.advanceType!=null || this.query.thirdSysFk!=null){ + this.query.page=1 + } this.loading = true; if (this.query.thirdSysFk != null) { this.getQueryThirdSysFk(this.query.thirdSysFk);