修改bug 52550 项目清单--点翻页,高级查询的框会被自动打开
This commit is contained in:
@@ -801,6 +801,7 @@ export default {
|
|||||||
orgTableValName: "",
|
orgTableValName: "",
|
||||||
// 高级检索
|
// 高级检索
|
||||||
isAdvancedSearch: false,
|
isAdvancedSearch: false,
|
||||||
|
isAdvancedSearchFlag: false,
|
||||||
targetMarketOptions: {},
|
targetMarketOptions: {},
|
||||||
twoOptions: [
|
twoOptions: [
|
||||||
{
|
{
|
||||||
@@ -1206,7 +1207,7 @@ export default {
|
|||||||
getLocalProductTableBtn() {
|
getLocalProductTableBtn() {
|
||||||
this.page = 1
|
this.page = 1
|
||||||
this.projectLibrarySearch.page = 1;
|
this.projectLibrarySearch.page = 1;
|
||||||
this.isAdvancedSearch = true;
|
this.isAdvancedSearchFlag = true;
|
||||||
this.getLocalProductTable();
|
this.getLocalProductTable();
|
||||||
},
|
},
|
||||||
// 查询本地产品
|
// 查询本地产品
|
||||||
@@ -1418,7 +1419,7 @@ export default {
|
|||||||
// 分页点击后方法
|
// 分页点击后方法
|
||||||
pageChange(page) {
|
pageChange(page) {
|
||||||
this.page = page;
|
this.page = page;
|
||||||
if (this.isAdvancedSearch === true) {
|
if (this.isAdvancedSearchFlag === true) {
|
||||||
this.getLocalProductTable()
|
this.getLocalProductTable()
|
||||||
} else {
|
} else {
|
||||||
this.getLocalProductTables()
|
this.getLocalProductTables()
|
||||||
@@ -1427,7 +1428,7 @@ export default {
|
|||||||
// 分页每页显示数改变后方法
|
// 分页每页显示数改变后方法
|
||||||
pageSizeChange(pageSize) {
|
pageSizeChange(pageSize) {
|
||||||
this.pageSize = pageSize;
|
this.pageSize = pageSize;
|
||||||
if (this.isAdvancedSearch === true) {
|
if (this.isAdvancedSearchFlag === true) {
|
||||||
this.getLocalProductTable()
|
this.getLocalProductTable()
|
||||||
} else {
|
} else {
|
||||||
this.getLocalProductTables()
|
this.getLocalProductTables()
|
||||||
|
|||||||
Reference in New Issue
Block a user