李帅 месяцев назад: 6
Родитель
Сommit
ee77f869ab
2 измененных файлов с 3 добавлено и 11 удалено
  1. 2 2
      src/views/home/centerBottom.vue
  2. 1 9
      src/views/home/centerTop.vue

+ 2 - 2
src/views/home/centerBottom.vue

@@ -46,7 +46,7 @@
46 46
         <!--<el-table-column label="问题整改率" align="center" prop="problemRectificationRate">-->
47 47
         <el-table-column label="整改率" align="center" prop="problemRectificationRate">
48 48
            <template #default="{ row }">
49
-              {{ row.problemRectificationRate? (row.problemRectificationRate) * 100 + '%': ''}}
49
+              {{ row.problemRectificationRate? ((row.problemRectificationRate) * 100).toFixed(0) + '%': ''}}
50 50
           </template>
51 51
         </el-table-column>
52 52
       </el-table>
@@ -73,7 +73,7 @@
73 73
         </el-table-column>
74 74
         <el-table-column label="问题整改率" align="center" prop="problemRectificationRate" show-overflow-tooltip>
75 75
            <template #default="{ row }">
76
-              {{ row.problemRectificationRate? row.problemRectificationRate * 100 + '%': ''}}
76
+              {{ row.problemRectificationRate? (row.problemRectificationRate * 100 ).toFixed(0)+ '%': ''}}
77 77
           </template>
78 78
         </el-table-column>
79 79
     </el-table>

+ 1 - 9
src/views/home/centerTop.vue

@@ -95,15 +95,7 @@ export default {
95 95
                 fontSize: '30',
96 96
                 formatter: function (data) {
97 97
                   // 设置圆饼图中间文字排版
98
-                  return Number.isInteger(
99
-                    JSON.parse(localStorage.getItem('perBfb')) * 100
100
-                  )
101
-                    ? JSON.parse(localStorage.getItem('perBfb')) * 100
102
-                    : Math.floor(
103
-                        JSON.parse(localStorage.getItem('perBfb')) * 100 * 100
104
-                      ) /
105
-                        100 +
106
-                        '%'
98
+                  return   (JSON.parse(localStorage.getItem('perBfb')) * 100).toFixed(0)  + '%'
107 99
                 }
108 100
               }
109 101
             },