Browse Source

组织ID

shibei_master
13176889840 4 years ago
parent
commit
1348e6105b
  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) {
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);
},
},
};

Loading…
Cancel
Save