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() },