Commit 16d013d7 authored by 赵啸非's avatar 赵啸非

修改百分百

parent 411e0231
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
<span style="font-size: 12px" <span style="font-size: 12px"
><span class="tips">上线率 </span ><span class="tips">上线率 </span
><span v-bind:class="{ success: statData.deviceOnlineRatio >= 0 }" ><span v-bind:class="{ success: statData.deviceOnlineRatio >= 0 }"
>{{ statData.deviceOnlineRatio * 100 }}%</span >{{ (statData.deviceOnlineRatio * 100).toFixed(2) }}%</span
></span ></span
> >
<p class="total-item-title"> <p class="total-item-title">
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
<span style="font-size: 12px" <span style="font-size: 12px"
><span class="tips">离线率 </span ><span class="tips">离线率 </span
><span v-bind:class="{ warn: statData.deviceOfflineRatio >= 0 }" ><span v-bind:class="{ warn: statData.deviceOfflineRatio >= 0 }"
>{{ statData.deviceOfflineRatio * 100 }}%</span >{{ (statData.deviceOfflineRatio * 100).toFixed(2) }}%</span
></span ></span
> >
<p class="total-item-title"> <p class="total-item-title">
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
<span style="font-size: 12px" <span style="font-size: 12px"
><span class="tips">停用率 </span ><span class="tips">停用率 </span
><span v-bind:class="{ warn: statData.deviceStopRatio >= 0 }" ><span v-bind:class="{ warn: statData.deviceStopRatio >= 0 }"
>{{ statData.deviceStopRatio * 100 }}%</span >{{ (statData.deviceStopRatio * 100).toFixed(2) }}%</span
></span ></span
> >
<p class="total-item-title"> <p class="total-item-title">
...@@ -124,7 +124,7 @@ ...@@ -124,7 +124,7 @@
<span style="font-size: 12px" <span style="font-size: 12px"
><span class="tips">未激活率 </span ><span class="tips">未激活率 </span
><span v-bind:class="{ warn: statData.deviceUnActiveRatio >= 0 }" ><span v-bind:class="{ warn: statData.deviceUnActiveRatio >= 0 }"
>{{ statData.deviceUnActiveRatio * 100 }}%</span >{{ (statData.deviceUnActiveRatio * 100).toFixed(2) }}%</span
></span ></span
> >
<p class="total-item-title"> <p class="total-item-title">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment