opeDataDetail.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view>
  3. <view class="timeBox flex justify-between align-center padding-lr-sm">
  4. <view class="time">进线一</view>
  5. <button class="cu-btn bg-green sm">在线</button>
  6. </view>
  7. <view class="basic-info">
  8. <view class="info-tit margin-left-xs">
  9. <text class="cuIcon-titles margin-right-xs"></text>
  10. 数据状态
  11. </view>
  12. <view class="info-content">
  13. <view class="info-one-info ">
  14. <text>Uab:</text>
  15. <text>219.06V</text>
  16. </view>
  17. <view>
  18. <text>Ubc:</text>
  19. <text>0.00V</text>
  20. </view>
  21. <view>
  22. <text>Uca:</text>
  23. <text>219.06V</text>
  24. </view>
  25. <view>
  26. <text>la:</text>
  27. <text>0.00A</text>
  28. </view>
  29. <view>
  30. <text>lb:</text>
  31. <text>0.00A</text>
  32. </view>
  33. <view>
  34. <text>lc:</text>
  35. <text>0.00A</text>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. }
  46. },
  47. onLoad() {
  48. },
  49. methods: {
  50. }
  51. }
  52. </script>
  53. <style>
  54. .info-content uni-view uni-text:first-child{
  55. width:90rpx;
  56. }
  57. </style>