|
|
@ -239,6 +239,7 @@ export default { |
|
|
|
queryEndTime: '', |
|
|
|
categoryCode: '', |
|
|
|
tableOrgId: '', |
|
|
|
tableOrgType: '', |
|
|
|
eventId: '', |
|
|
|
processStatus: '' |
|
|
|
} |
|
|
@ -400,6 +401,7 @@ export default { |
|
|
|
value: item.total, |
|
|
|
name: item.orgName, |
|
|
|
orgId: item.orgId, |
|
|
|
orgType: item.orgType, |
|
|
|
color: colorArray[colIndex], |
|
|
|
selected: index == 0 ? true : false |
|
|
|
} |
|
|
@ -416,7 +418,7 @@ export default { |
|
|
|
const url = '/gov/project/icEvent/processAnalysis/eventList' |
|
|
|
let params = { |
|
|
|
orgId: this.tableOrgId ? this.tableOrgId : this.orgId, |
|
|
|
orgType: this.orgType, |
|
|
|
orgType: this.tableOrgType ? this.tableOrgType : this.orgType, |
|
|
|
queryStartTime: this.queryStartTime, |
|
|
|
queryEndTime: this.queryEndTime, |
|
|
|
processStatus: this.processStatus, // 处理状态,processing,closed_case。可为空,为空查询所有状态的事件列表 |
|
|
@ -538,6 +540,7 @@ export default { |
|
|
|
// this.$refs.pieChart.hideLoading() |
|
|
|
this.$refs.pieChart.setOption(this.pieOption) |
|
|
|
this.tableOrgId = '' |
|
|
|
this.tableOrgType = '' |
|
|
|
this.demand.pageNo = 1 |
|
|
|
this.getGridPieData() |
|
|
|
}, |
|
|
@ -603,6 +606,8 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
this.tableOrgId = element.orgId |
|
|
|
this.tableOrgType = element.orgType |
|
|
|
console.log(element) |
|
|
|
} else { |
|
|
|
element.label = { |
|
|
|
show: false, |
|
|
|