From f9e7341b784c05cc8377ddd6689346e79946f384 Mon Sep 17 00:00:00 2001 From: duanliangtao Date: Sat, 9 Sep 2023 16:45:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BA=86=E4=B8=89=E4=B8=AA?= =?UTF-8?q?=E8=A1=A8=E6=A0=BC=E7=9A=84=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/goverhotline/index.vue | 67 +++++++++++++++++++----- 1 file changed, 55 insertions(+), 12 deletions(-) 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; + }) + : []; }, },