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