deviceInfo.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="device-info-main">
  3. <view class="device-name">铁甲小宝</view>
  4. <view class="block-card">
  5. <view class="info-view">
  6. <view class="info-title">车架号</view>
  7. <view class="info-value">YM201823355887777</view>
  8. </view>
  9. <view class="info-view">
  10. <view class="info-title">设备编号</view>
  11. <view class="info-value">YM201823355887777</view>
  12. </view>
  13. <view class="info-view">
  14. <view class="info-title">车辆总里程</view>
  15. <view class="info-value">YM201823355887777</view>
  16. </view>
  17. </view>
  18. <view class="flex-row">
  19. <view class="block-card-1" style="margin-right: 18rpx;">
  20. <img class="info-icon" src="https://qiniu.bms16.com/FoyFReERWQ5jmqQIk0Aj9V7SWGR2" alt="">
  21. <view class="info-text">中控硬件</view>
  22. <view class="info-vosion">V1.0.6</view>
  23. </view>
  24. <view class="block-card-1" >
  25. <img class="info-icon" src="https://qiniu.bms16.com/Fvf3btY0699U2P65cRxYGDBADNHr" alt="">
  26. <view class="info-text">中控软件</view>
  27. <view class="info-vosion">V1.0.6</view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. };
  37. }
  38. /**
  39. * 生命周期函数--监听页面加载
  40. */
  41. ,
  42. onLoad: function(options) {
  43. },
  44. methods: {
  45. }
  46. };
  47. </script>
  48. <style>
  49. @import './deviceInfo.css';
  50. </style>