|
|
|
@ -123,8 +123,8 @@ |
|
|
|
:height="maxTableHeight" |
|
|
|
> |
|
|
|
<el-table-column label="序号" type="index" align="center" width="50" /> |
|
|
|
<el-table-column prop="streetName" width="110" label="镇街" align="center" :show-overflow-tooltip="true" /> |
|
|
|
<el-table-column prop="districtName" label="区县" width="110" align="center" :show-overflow-tooltip="true"></el-table-column> |
|
|
|
<el-table-column prop="streetName" width="110" label="镇街" align="center" :show-overflow-tooltip="true" /> |
|
|
|
<el-table-column prop="communityName" width="110" align="center" label="社区" :show-overflow-tooltip="true"></el-table-column> |
|
|
|
<el-table-column prop="gridName" align="center" width="110" label="网格" :show-overflow-tooltip="true"></el-table-column> |
|
|
|
<el-table-column prop="houseName" align="center" label="房屋名称" :show-overflow-tooltip="true"></el-table-column> |
|
|
|
@ -243,8 +243,8 @@ export default { |
|
|
|
purpose: '', |
|
|
|
rentFlag: '', |
|
|
|
orgIdPath: '', |
|
|
|
chartDataData:[], |
|
|
|
chartData2Data:[] |
|
|
|
chartDataData: [], |
|
|
|
chartData2Data: [] |
|
|
|
}; |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
@ -415,7 +415,7 @@ export default { |
|
|
|
radio: item.count == 0 ? '0' : ((item.count / this.pieData.total) * 100).toFixed(2) |
|
|
|
}; |
|
|
|
}); |
|
|
|
this.chartDataData=this.chartData.data ; |
|
|
|
this.chartDataData = this.chartData.data; |
|
|
|
this.$forceUpdate(); |
|
|
|
this.iniPieChart(this.chartData); |
|
|
|
}, |
|
|
|
@ -436,7 +436,7 @@ export default { |
|
|
|
radio: item.count == 0 ? '0' : ((item.count / this.pieData2.total) * 100).toFixed(2) |
|
|
|
}; |
|
|
|
}); |
|
|
|
this.chartData2Data=this.chartData2.data ; |
|
|
|
this.chartData2Data = this.chartData2.data; |
|
|
|
this.$forceUpdate(); |
|
|
|
this.iniPieChart2(this.chartData2); |
|
|
|
}, |
|
|
|
|