x-navbottom.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <!-- 底部tabbar -->
  3. <view class="card_information">
  4. <view class="space_between">
  5. <view style="display: flex;">
  6. <view class="interval">SN:21512532142134</view>
  7. <view class="interval">通讯:</view>
  8. <view class="interval">未上传数据:0</view>
  9. <view class="interval">未上传报警:0</view>
  10. <view class="title_green interval">备网:本地网</view>
  11. <view class="interval">Rssi:16</view>
  12. </view>
  13. <view class="card_row_right">市电正常 UPS:0.13V 2024-8-30 10:17:30</view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. name: 'x-navbottom',
  20. props: {},
  21. data() {
  22. return {}
  23. },
  24. mounted() {},
  25. methods: {}
  26. }
  27. </script>
  28. <style lang="scss">
  29. .card_information {
  30. // position: fixed;
  31. // bottom: 0;
  32. // left: 0;
  33. // right: 0;
  34. display: flex;
  35. align-items: flex-end;
  36. flex-direction: column;
  37. justify-content: center;
  38. height: 24rpx;
  39. padding: 0rpx 15rpx;
  40. background-color: #fff;
  41. border-top: 1px solid #EBEEF5;
  42. }
  43. .card_row_flex {
  44. display: flex;
  45. align-items: center;
  46. justify-content: flex-end;
  47. }
  48. .card_row_right {
  49. display: flex;
  50. justify-content: flex-end;
  51. font-size: 14rpx;
  52. }
  53. .title_green {
  54. color: #5ac725;
  55. }
  56. .interval {
  57. font-size: 14rpx;
  58. margin-right: 4rpx;
  59. }
  60. </style>