diff --git a/src/apps/AppHandSnapshot/Statistics.vue b/src/apps/AppHandSnapshot/Statistics.vue
index c8a81b59..3d2fb098 100644
--- a/src/apps/AppHandSnapshot/Statistics.vue
+++ b/src/apps/AppHandSnapshot/Statistics.vue
@@ -21,11 +21,11 @@
受理率
-
{{info.businessCountMap['受理率'] * 100 || '0'}}%
+
{{info.businessCountMap['受理率'] || '0'}}%
办结率
-
{{info.businessCountMap['办结率'] * 100 || '0'}}%
+
{{info.businessCountMap['办结率'] || '0'}}%
@@ -95,10 +95,10 @@ export default {
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)
+ res.data.businessCountMap['受理率'] = Number(res.data.businessCountMap['受理率'] * 100).toFixed(1)
}
if(res.data.businessCountMap['办结率']) {
- res.data.businessCountMap['办结率'] = Number(res.data.businessCountMap['办结率']).toFixed(3)
+ res.data.businessCountMap['办结率'] = Number(res.data.businessCountMap['办结率'] * 100).toFixed(1)
}
this.info = res.data