From 1348e6105b4a641ba48fd8e8a94d633dad698b55 Mon Sep 17 00:00:00 2001 From: 13176889840 <13176889840@163.com> Date: Wed, 26 Jan 2022 13:36:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E7=BB=87ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/visual/communityParty/community.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/modules/visual/communityParty/community.vue b/src/views/modules/visual/communityParty/community.vue index 4c708061..bbfb1970 100644 --- a/src/views/modules/visual/communityParty/community.vue +++ b/src/views/modules/visual/communityParty/community.vue @@ -397,6 +397,7 @@ export default { if (val.length > 0) { const _arr = val[val.length - 1].split('-') const orgType = _arr[1] !== 'grid' ? 'agency' : 'grid' + this.agencyId = _arr[0] this.getList(_arr[0]) this.getMapUnitList(_arr[0]) this.getCateCount(_arr[0]) @@ -571,16 +572,16 @@ export default { }, handleSelectChange (val) { - this.getList(); + this.getList(this.agencyId); }, pageSizeChangeHandleNew (val) { this.pageNo = 1; this.pageSize = val; - this.getList(); + this.getList(this.agencyId); }, pageCurrentChangeHandleNew (val) { this.pageNo = val; - this.getList(); + this.getList(this.agencyId); }, }, };