修改bug 52550 项目清单--点翻页,高级查询的框会被自动打开

This commit is contained in:
zhangyichen
2022-04-13 09:53:34 +08:00
parent 0a9ac5b38f
commit 2c6b0f2058
@@ -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()