Browse Source

Merge branch 'dev-chaxun' into test

shibei_master
13176889840 4 years ago
parent
commit
c741b06d78
  1. 7
      src/views/modules/visual/communityParty/community.vue

7
src/views/modules/visual/communityParty/community.vue

@ -397,6 +397,7 @@ export default {
if (val.length > 0) { if (val.length > 0) {
const _arr = val[val.length - 1].split('-') const _arr = val[val.length - 1].split('-')
const orgType = _arr[1] !== 'grid' ? 'agency' : 'grid' const orgType = _arr[1] !== 'grid' ? 'agency' : 'grid'
this.agencyId = _arr[0]
this.getList(_arr[0]) this.getList(_arr[0])
this.getMapUnitList(_arr[0]) this.getMapUnitList(_arr[0])
this.getCateCount(_arr[0]) this.getCateCount(_arr[0])
@ -571,16 +572,16 @@ export default {
}, },
handleSelectChange (val) { handleSelectChange (val) {
this.getList(); this.getList(this.agencyId);
}, },
pageSizeChangeHandleNew (val) { pageSizeChangeHandleNew (val) {
this.pageNo = 1; this.pageNo = 1;
this.pageSize = val; this.pageSize = val;
this.getList(); this.getList(this.agencyId);
}, },
pageCurrentChangeHandleNew (val) { pageCurrentChangeHandleNew (val) {
this.pageNo = val; this.pageNo = val;
this.getList(); this.getList(this.agencyId);
}, },
}, },
}; };

Loading…
Cancel
Save