|
|
|
@ -162,7 +162,9 @@ export default { |
|
|
|
if (timeType != 0) { |
|
|
|
this.hideSearch = true; |
|
|
|
this.timeRange = this.timeChange(timeType); |
|
|
|
console.log(this.timeRange); |
|
|
|
this.queryParams.startTime = this.timeRange[0]; |
|
|
|
this.queryParams.endTime = this.timeRange[1]; |
|
|
|
this.queryParams.month = ""; |
|
|
|
} else { |
|
|
|
this.hideSearch = false; |
|
|
|
} |
|
|
|
@ -206,7 +208,6 @@ export default { |
|
|
|
orgId: this.$store.state.chooseArea.chooseName.orgId, |
|
|
|
level: this.$store.state.chooseArea.chooseName.level, |
|
|
|
}; |
|
|
|
|
|
|
|
this.$http.post(`/gov/org/agency/maporg`, params).then(async ({ data: { data } }) => { |
|
|
|
this.queryParams.agencyId = this.$store.state.chooseArea.chooseName.orgId; |
|
|
|
let parent = { value: data.id, label: data.name }; |
|
|
|
@ -249,7 +250,6 @@ export default { |
|
|
|
return [startTime, endTime]; |
|
|
|
}, |
|
|
|
handleView(id) { |
|
|
|
console.log(id); |
|
|
|
this.id = id; |
|
|
|
this.$refs.detail.open(id); |
|
|
|
}, |
|
|
|
|