batteryRecord.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <view class="container-view">
  3. <view class="order-type-view flex-row flex-between">
  4. <view class="car-model-list flex-row">
  5. <view class="car-model-text">小米Su5</view><img class="right-corner-icon"
  6. src="https://qiniu.bms16.com/Fqs6TrEmcdT7QNEdKWs9Hir2cacO" alt="">
  7. </view>
  8. </view>
  9. <view v-for="(item,index) of list" :key="index" class="batteryList">
  10. <view class="header">
  11. <view v-if="item.status == 1" class="h5">开始换电</view>
  12. <view v-if="item.status == 2" class="h5">换电中</view>
  13. <view v-if="item.status == 3" class="h5">换电成功</view>
  14. <view v-if="item.status == 4" class="h5">换电失败</view>
  15. <view v-if="item.status == 0" class="h5">未知</view>
  16. <view class="time">{{item.ctime}}</view>
  17. </view>
  18. <view class="dl">
  19. <view class="dt">换电单号</view>
  20. <view class="dd">{{item.order_sn}}</view>
  21. </view>
  22. <view class="dl">
  23. <view class="dt">归还电池</view>
  24. <view class="dd">{{item.btn_battery}}</view>
  25. </view>
  26. <view class="dl">
  27. <view class="dt">借出电池</view>
  28. <view class="dd">{{item.bor_battery}}</view>
  29. </view>
  30. <view class="dl">
  31. <view class="dt">换电类型</view>
  32. <view v-if="item.type == 0" class="dd">机柜换电</view>
  33. <view v-if="item.type == 1" class="dd">门店换电</view>
  34. </view>
  35. <view class="dl">
  36. <view class="dt">电柜名称</view>
  37. <view class="dd">{{item.dev_name}}</view>
  38. </view>
  39. <image class="top" src="https://qiniu.bms16.com/FpVjOP5pZY1gXcCcS3TwI0GkywEe" mode=""></image>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import dayjs from 'dayjs'
  45. import duration from 'dayjs/plugin/duration'
  46. dayjs.extend(duration);
  47. var config_gyq = require('../../common/config_gyq.js');
  48. var request = require('../../common/request');
  49. export default {
  50. data() {
  51. return {
  52. car_sn: "",
  53. list: []
  54. }
  55. },
  56. onLoad() {
  57. this.car_sn = uni.getStorageSync('car_info').car_sn
  58. this.listFn()
  59. },
  60. methods: {
  61. async listFn() {
  62. let {
  63. data
  64. } = await request.postApi(config_gyq.API_FLK_CABINET_EXCHANGE_ORDER, {
  65. car_sn: this.car_sn
  66. })
  67. if (data.code == 200) {
  68. this.list = data.data.list
  69. this.list.btn_battery = data.data.list.btn_battery ? data.data.list.btn_battery.join(',') : ''
  70. this.list.bor_battery = data.data.list.bor_battery ? data.data.list.bor_battery.join(',') : ''
  71. this.list.ctime = dayjs(data.data.list.ctime * 1000).format('YYYY-MM-DD')
  72. console.log(this.list.ctime)
  73. }
  74. }
  75. }
  76. }
  77. </script>
  78. <style scoped lang="scss">
  79. .batteryList {
  80. width: 698rpx;
  81. background: #FFFFFF;
  82. border-radius: 32rpx;
  83. padding: 32rpx;
  84. margin: auto;
  85. margin-top: 20rpx;
  86. position: relative;
  87. .top {
  88. position: absolute;
  89. right: 30rpx;
  90. bottom: 30rpx;
  91. width: 40rpx;
  92. height: 40rpx;
  93. }
  94. .dl {
  95. display: flex;
  96. align-items: center;
  97. margin-top: 30rpx;
  98. .dt {
  99. font-family: PingFangSC, PingFang SC;
  100. font-size: 28rpx;
  101. color: #9FA7B7;
  102. padding-right: 30rpx;
  103. }
  104. .dd {
  105. font-family: Futura, Futura;
  106. font-weight: 500;
  107. font-size: 30rpx;
  108. color: #060809;
  109. }
  110. }
  111. .header {
  112. display: flex;
  113. justify-content: space-between;
  114. align-items: center;
  115. font-family: PingFangSC, PingFang SC;
  116. font-weight: bold;
  117. border-bottom: 2rpx solid #F4F5F6;
  118. padding-bottom: 30rpx;
  119. .h5 {
  120. font-size: 36rpx;
  121. color: #060809;
  122. }
  123. .time {
  124. font-family: Futura, Futura;
  125. font-weight: 500;
  126. font-size: 34rpx;
  127. color: #5E6F90;
  128. font-style: normal;
  129. }
  130. }
  131. }
  132. .order-type-view {
  133. padding: 32rpx;
  134. height: 96rpx;
  135. margin-bottom: 20rpx;
  136. background: #FFFFFF;
  137. align-items: center;
  138. }
  139. .car-model-list {
  140. position: relative;
  141. font-family: PingFangSC, PingFang SC;
  142. font-weight: 600;
  143. font-size: 40rpx;
  144. color: #060809;
  145. }
  146. .right-corner-icon {
  147. width: 14rpx;
  148. height: 14rpx;
  149. position: absolute;
  150. bottom: 9rpx;
  151. right: -22rpx;
  152. }
  153. </style>