Browse Source

措施服务列表

shibei_master
13176889840 4 years ago
parent
commit
e27ccbfeb4
  1. 9
      src/views/modules/visual/measure/service.vue

9
src/views/modules/visual/measure/service.vue

@ -514,6 +514,7 @@ export default {
this.categoryCode = code this.categoryCode = code
const _arr = this.selectAgency[this.selectAgency.length - 1].split('-') const _arr = this.selectAgency[this.selectAgency.length - 1].split('-')
const orgType = _arr[1] !== 'grid' ? 'agency': 'grid' const orgType = _arr[1] !== 'grid' ? 'agency': 'grid'
this.pageNo = 1
this.getServiceList(_arr[0], orgType, code) this.getServiceList(_arr[0], orgType, code)
} }
}, },
@ -536,11 +537,15 @@ export default {
pageSizeChangeHandleNew(val) { pageSizeChangeHandleNew(val) {
this.pageNo = 1; this.pageNo = 1;
this.pageSize = val; this.pageSize = val;
this.handleCascader(this.selectAgency) const _arr = this.selectAgency[this.selectAgency.length - 1].split('-')
const orgType = _arr[1] !== 'grid' ? 'agency': 'grid'
this.getServiceList(_arr[0], orgType, this.categoryCode)
}, },
pageCurrentChangeHandleNew(val) { pageCurrentChangeHandleNew(val) {
this.pageNo = val; this.pageNo = val;
this.handleCascader(this.selectAgency) const _arr = this.selectAgency[this.selectAgency.length - 1].split('-')
const orgType = _arr[1] !== 'grid' ? 'agency': 'grid'
this.getServiceList(_arr[0], orgType, this.categoryCode)
}, },
}, },
}; };

Loading…
Cancel
Save