cabinetList.vue 797 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="cabinet-list-main">
  3. <view class="flex-row flex-between">
  4. <view class="cabinet-name">这里是一个电柜的名称</view>
  5. <view class="cabinet-distance">240m</view>
  6. </view>
  7. <view class="battery-list-view">
  8. <view class="battery-view">
  9. <text class="battery-voltage">48V/20Ah</text>
  10. <text class="battery-num">*7</text>
  11. </view>
  12. </view>
  13. <view class="flex-row flex-end">
  14. <img style="width: 112rpx;height: 64rpx;" src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt="">
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. };
  23. }
  24. /**
  25. * 生命周期函数--监听页面加载
  26. */
  27. ,
  28. onLoad: function(options) {
  29. },
  30. methods: {
  31. }
  32. };
  33. </script>
  34. <style>
  35. @import './cabinetList.css';
  36. </style>