From b4a8c24c61ddf949f8aac58b97f5dd8655f73cc4 Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 7 Jan 2022 18:10:07 +0800 Subject: [PATCH] bug --- src/apps/AppHandSnapshot/Statistics.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/apps/AppHandSnapshot/Statistics.vue b/src/apps/AppHandSnapshot/Statistics.vue index 80302deb..c8a81b59 100644 --- a/src/apps/AppHandSnapshot/Statistics.vue +++ b/src/apps/AppHandSnapshot/Statistics.vue @@ -58,7 +58,7 @@
{{item.groupName}}
-
共{{item.totalNum}}条 | 已办结{{item.finishNum}} +
共{{item.totalNum}}条 | 已办结{{item.finishNum}}
@@ -94,7 +94,14 @@ export default { getStatistics() { this.$http.post('/app/appclapeventinfo/countByGirdMember').then((res) => { if (res.code == 0) { + if(res.data.businessCountMap['受理率']) { + res.data.businessCountMap['受理率'] = Number(res.data.businessCountMap['受理率']).toFixed(3) + } + if(res.data.businessCountMap['办结率']) { + res.data.businessCountMap['办结率'] = Number(res.data.businessCountMap['办结率']).toFixed(3) + } this.info = res.data + Object.keys(res.data.todayCountMap).forEach((key) => { var info = { label: key, @@ -326,6 +333,7 @@ export default { height: 100%; background: #257FF1; border-radius: 8px; + min-width: 1%; } } img{