|
@@ -3,41 +3,42 @@
|
|
|
<view class="device-items">
|
|
|
<view class="device-item">
|
|
|
<text class="text-yellow">Uab</text>
|
|
|
- <text>{{deviceDetail.Uab>1000?deviceDetail.Uab/1000:deviceDetail.Uab}}</text>
|
|
|
- <text v-if="deviceDetail.Uab>1000">KV</text>
|
|
|
+ <text>{{deviceDetail.Uab>1000?(deviceDetail.Uab/1000).toFixed(2):deviceDetail.Uab}}</text>
|
|
|
+ <text v-if="deviceDetail.Uab>1000">kV</text>
|
|
|
<text v-else>V</text>
|
|
|
</view>
|
|
|
<view class="device-item">
|
|
|
<text class="text-green">Ubc</text>
|
|
|
- <text>{{deviceDetail.Ubc>1000?deviceDetail.Ubc/1000:deviceDetail.Ubc}}</text>
|
|
|
- <text v-if="deviceDetail.Ubc>1000">KV</text>
|
|
|
+ <text>{{deviceDetail.Ubc>1000?(deviceDetail.Ubc/1000).toFixed(2):deviceDetail.Ubc}}</text>
|
|
|
+ <text v-if="deviceDetail.Ubc>1000">kV</text>
|
|
|
<text v-else>V</text>
|
|
|
</view>
|
|
|
<view class="device-item">
|
|
|
- <text class="text-red">Uca</text>
|
|
|
- <text>{{deviceDetail.Uca}}</text>
|
|
|
- <text>V</text>
|
|
|
+ <text class="text-red">Uca</text>
|
|
|
+ <text>{{deviceDetail.Uca>1000?(deviceDetail.Uca/1000).toFixed(2):deviceDetail.Uca}}</text>
|
|
|
+ <text v-if="deviceDetail.Uca>1000">kV</text>
|
|
|
+ <text v-else>V</text>
|
|
|
</view>
|
|
|
<view class="device-item">
|
|
|
<text class="text-red">F</text>
|
|
|
<text>{{deviceDetail.F}}</text>
|
|
|
- <text>V</text>
|
|
|
+ <text>HZ</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
<view class="device-items">
|
|
|
<view class="device-item">
|
|
|
- <text class="text-yellow">La</text>
|
|
|
+ <text class="text-yellow">Ia</text>
|
|
|
<text>{{deviceDetail.Ia}}</text>
|
|
|
<text>A</text>
|
|
|
</view>
|
|
|
<view class="device-item">
|
|
|
- <text class="text-green">Lb</text>
|
|
|
+ <text class="text-green">Ib</text>
|
|
|
<text>{{deviceDetail.Ib}}</text>
|
|
|
<text>A</text>
|
|
|
</view>
|
|
|
<view class="device-item">
|
|
|
- <text class="text-red">Lc</text>
|
|
|
+ <text class="text-red">Ic</text>
|
|
|
<text>{{deviceDetail.Ic}}</text>
|
|
|
<text>A</text>
|
|
|
</view>
|
|
@@ -52,9 +53,9 @@
|
|
|
<text>kvar</text>
|
|
|
</view>
|
|
|
<view class="device-item">
|
|
|
- <text class="text-red">cos</text>
|
|
|
+ <text class="text-red">COS</text>
|
|
|
<text>{{deviceDetail.COS}}</text>
|
|
|
- <text>V</text>
|
|
|
+ <text></text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|