From 7fae922c3189c92ce681d5de644d0ed2511f6979 Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Sun, 14 Nov 2021 10:34:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=9F=E8=B8=AA=E6=B8=85=E5=8D=95=E5=88=86?= =?UTF-8?q?=E9=A1=B5=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../page/listTracking.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listTracking.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listTracking.vue index 3cc9d3bed..5a8984b4c 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listTracking.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listTracking.vue @@ -883,15 +883,15 @@ export default { }, // 搜索 searchSarAccessBtn () { - this.page = 1 + this.sarSarAccessEOSearch.page = 1 this.searchSarAccess() }, //分页查询 searchSarAccess (advanceSearch) { console.log('准备开始分页查询') this.$http.get("sarIssueTrack/issueTrack", { - page: 1, - pageSize: this.pageSize, + current: this.sarSarAccessEOSearch.page, + pageSize: this.$store.getters.userInfo.configContent, ...this.sarSarAccessEOSearch, sortKey: 2 }, { @@ -899,9 +899,8 @@ export default { }, res => { let arr = res.data; console.log('分页查询中',arr) - this.sarAccessListDatas = arr + this.sarAccessListDatas = arr.records this.tableLoading = false - this.sarSarAccessEOSearch.page = 1 this.sarAccessListTotal = res.data.total }, e => { }); @@ -912,6 +911,7 @@ export default { this.searchSarAccess() }, pageSizeChange (pageSize) { + this.sarSarAccessEOSearch.page = 1 this.sarSarAccessEOSearch.pageSize = this.$store.getters.userInfo.configContent this.searchSarAccess() },