liyongli 2 anni fa
parent
commit
c94da84191

+ 1 - 1
src/views/report/SilkRoadData/index.vue

@@ -29,7 +29,7 @@
                 <span style="color: red">{{ item.taskNum | formmate }}</span>
               </van-col>
               <van-col span="8">
-                {{ (item.onTimeNum / item.taskNum).toFixed(2) - 0 }}%
+                {{ ((item.onTimeNum / item.taskNum).toFixed(2) - 0) * 100 }}%
               </van-col>
               <van-col span="8">{{ item.readNum | formmate }}</van-col>
             </van-row>

+ 1 - 1
src/views/report/SilkRoadDetail/index.vue

@@ -30,7 +30,7 @@
             </van-col>
             <van-col span="6">
               <span style="color: red">
-                {{ (item.onTimeNum / item.taskNum).toFixed(2) - 0 }}%
+                {{ ((item.onTimeNum / item.taskNum).toFixed(2) - 0) * 100 }}%
               </span>
             </van-col>
             <van-col span="6">{{ item.readNum | formmate }}</van-col>