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); }, }, };