From 3e35778991b99f43a46fc3008734bfb0541fa5ee Mon Sep 17 00:00:00 2001 From: zhangyichen <5277314+zacty@user.noreply.gitee.com> Date: Wed, 13 Apr 2022 09:59:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2052549=20=E6=A0=87?= =?UTF-8?q?=E5=87=86=E6=B3=95=E8=A7=84=E6=B8=85=E5=8D=95--=E7=BF=BB?= =?UTF-8?q?=E9=A1=B5=E4=B9=8B=E5=90=8E=E7=9A=84=E9=A1=B5=E7=A0=81=E4=B8=8D?= =?UTF-8?q?=E5=AF=B9=EF=BC=8C=E5=BA=94=E8=AF=A5=E6=98=AF=E7=AC=AC=E4=BA=8C?= =?UTF-8?q?=E9=A1=B5=EF=BC=8C=E7=9B=AE=E5=89=8D=E6=98=BE=E7=A4=BA=E7=AC=AC?= =?UTF-8?q?=E4=B8=80=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../page/listOfCountries.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOfCountries.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOfCountries.vue index 5f82860d2..30d9299cf 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOfCountries.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOfCountries.vue @@ -32,7 +32,7 @@ class="common-button-primary" size="small" v-btn-permission="'072efe80c5459dd47fedd2d14f59ff7f'" - @click="searchSarAccess"> + @click="searchSarAccessPage1"> 查询 @@ -263,8 +263,8 @@ export default { searchSarAccess() { this.$http.get("sarLawsDetailedList/sar-laws-detailed-list/getAllStand", { sortKey: 1, - page: 1, - pageSize: 10, + page: this.sarSarAccessEOSearch.page, + pageSize: this.sarSarAccessEOSearch.pageSize, ...this.sarSarAccessEOSearch }, { _this: this @@ -286,7 +286,7 @@ export default { }); this.tableLoading = false; this.sarAccessListDatas = arr; - this.sarSarAccessEOSearch.page = 1; + // this.sarSarAccessEOSearch.page = 1; this.sarAccessListTotal = res.data.total; }, e => { @@ -300,6 +300,10 @@ export default { this.sarSarAccessEOSearch.pageSize = this.$store.getters.userInfo.configContent; this.searchSarAccess(); }, + searchSarAccessPage1() { + this.sarSarAccessEOSearch.page = 1 + this.searchSarAccess(); + }, clearSearch() { this.sarSarAccessEOSearch.countryArea = ""; this.sarSarAccessEOSearch.detailedListName = "";