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