From 2c6b0f2058215b4890767f693c0d07367c1fcd7e Mon Sep 17 00:00:00 2001 From: zhangyichen <5277314+zacty@user.noreply.gitee.com> Date: Wed, 13 Apr 2022 09:53:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2052550=20=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E6=B8=85=E5=8D=95--=E7=82=B9=E7=BF=BB=E9=A1=B5?= =?UTF-8?q?=EF=BC=8C=E9=AB=98=E7=BA=A7=E6=9F=A5=E8=AF=A2=E7=9A=84=E6=A1=86?= =?UTF-8?q?=E4=BC=9A=E8=A2=AB=E8=87=AA=E5=8A=A8=E6=89=93=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../localProductsOrProjectLibrary/index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue index 3f7d46e0b..581bdbf51 100644 --- a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue +++ b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue @@ -801,6 +801,7 @@ export default { orgTableValName: "", // 高级检索 isAdvancedSearch: false, + isAdvancedSearchFlag: false, targetMarketOptions: {}, twoOptions: [ { @@ -1206,7 +1207,7 @@ export default { getLocalProductTableBtn() { this.page = 1 this.projectLibrarySearch.page = 1; - this.isAdvancedSearch = true; + this.isAdvancedSearchFlag = true; this.getLocalProductTable(); }, // 查询本地产品 @@ -1418,7 +1419,7 @@ export default { // 分页点击后方法 pageChange(page) { this.page = page; - if (this.isAdvancedSearch === true) { + if (this.isAdvancedSearchFlag === true) { this.getLocalProductTable() } else { this.getLocalProductTables() @@ -1427,7 +1428,7 @@ export default { // 分页每页显示数改变后方法 pageSizeChange(pageSize) { this.pageSize = pageSize; - if (this.isAdvancedSearch === true) { + if (this.isAdvancedSearchFlag === true) { this.getLocalProductTable() } else { this.getLocalProductTables()