diff --git a/src/views/modules/goverhotline/index.vue b/src/views/modules/goverhotline/index.vue
index dabbbcc81..37c7e43cf 100644
--- a/src/views/modules/goverhotline/index.vue
+++ b/src/views/modules/goverhotline/index.vue
@@ -23,7 +23,7 @@
-
海伦路街道2023年1月1日至6月31日
+ {{ report.streetName }}2023年1月1日至6月31日
政务热线运行情况分析报告
@@ -76,25 +76,48 @@
(一)同地点同类型事件重复投诉
-
+
(二)同一人员重复投诉
-
+
+
+
(三)同一区域不同类型投诉
+
+
+
+
+
+
+
+
+
+
+
+
四、工作改进举措
+ 一是机制要“优”
+ 二是质量要“高”
+ 三是分流要“准”
+ 四是流程要“亚”
+ 五是沟通要“多
+ 六是模板要“精"
+
+
+
@@ -121,13 +144,16 @@ export default {
// 内容字段
report:{
+ streetName:"",
overallOperation:"",
geoStatis:"",
departHotline:"",
- hotDemand:""
+ hotDemand:"",
},
- addressData:{},
- mobileData:{},
+
+ addressData:[],
+ mobileData:[],
+ addressMobileData:[],
categoryChart: {},
categoryPie: {},
@@ -560,9 +586,8 @@ export default {
this.categoryChartOption.xAxis.data.push(key);
const jsonObject = {
- address: key,
- amount: key,
- content:key
+ name: key,
+ value: value
};
this.categoryPieOption.series[0].data.push(jsonObject);
@@ -596,6 +621,24 @@ export default {
this.hotlineChartOption.xAxis.data.push(key);
this.hotlineChartOption.series[0].data.push(value);
});
+
+ this.addressData = this.report.addressEvent
+ ? this.report.addressEvent.map(item => {
+ return item;
+ })
+ : [];
+
+ this.mobileData = this.report.mobileEvent
+ ? this.report.mobileEvent.map(item => {
+ return item;
+ })
+ : [];
+
+ this.addressMobileData = this.report.addressMobileEvents
+ ? this.report.addressMobileEvents.map(item => {
+ return item;
+ })
+ : [];
},
},