123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <view>
- <view class="timeBox flex justify-between align-center padding-lr-sm">
- <view class="time">进线一</view>
- <button class="cu-btn bg-green sm">在线</button>
- </view>
- <view class="basic-info">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 数据状态
- </view>
- <view class="info-content">
- <view class="info-one-info ">
- <text>Uab:</text>
- <text>219.06V</text>
- </view>
- <view>
- <text>Ubc:</text>
- <text>0.00V</text>
- </view>
- <view>
- <text>Uca:</text>
- <text>219.06V</text>
- </view>
- <view>
- <text>la:</text>
- <text>0.00A</text>
- </view>
- <view>
- <text>lb:</text>
- <text>0.00A</text>
- </view>
- <view>
- <text>lc:</text>
- <text>0.00A</text>
- </view>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
-
-
-
- },
- methods: {
-
- }
- }
- </script>
- <style>
- .info-content uni-view uni-text:first-child{
- width:90rpx;
- }
- </style>
|