batteryRecord.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. var common = require('../../common/common.js');
  50. export default {
  51. data() {
  52. return {
  53. car_sn: "",
  54. list: []
  55. }
  56. },
  57. onLoad() {
  58. this.car_sn = uni.getStorageSync('car_info').car_sn
  59. this.listFn()
  60. },
  61. methods: {
  62. async listFn() {
  63. let {
  64. data
  65. } = await request.postApi(config_gyq.API_FLK_CABINET_EXCHANGE_ORDER, {
  66. car_sn: this.car_sn
  67. })
  68. if (data.code == 200) {
  69. this.list = data.data.list
  70. this.list.map(item=>{
  71. item.btn_battery = item.btn_battery ? item.btn_battery.join(',') : ''
  72. item.bor_battery = item.bor_battery ? item.bor_battery.join(',') : ''
  73. item.ctime = common.formatTime(item.ctime)
  74. })
  75. }
  76. }
  77. }
  78. }
  79. </script>
  80. <style scoped lang="scss">
  81. .batteryList {
  82. width: 698rpx;
  83. background: #FFFFFF;
  84. border-radius: 32rpx;
  85. padding: 32rpx;
  86. margin: auto;
  87. margin-top: 20rpx;
  88. position: relative;
  89. .top {
  90. position: absolute;
  91. right: 30rpx;
  92. bottom: 30rpx;
  93. width: 40rpx;
  94. height: 40rpx;
  95. }
  96. .dl {
  97. display: flex;
  98. align-items: center;
  99. margin-top: 30rpx;
  100. .dt {
  101. font-family: PingFangSC, PingFang SC;
  102. font-size: 28rpx;
  103. color: #9FA7B7;
  104. padding-right: 30rpx;
  105. }
  106. .dd {
  107. font-family: Futura, Futura;
  108. font-weight: 500;
  109. font-size: 30rpx;
  110. color: #060809;
  111. }
  112. }
  113. .header {
  114. display: flex;
  115. justify-content: space-between;
  116. align-items: center;
  117. font-family: PingFangSC, PingFang SC;
  118. font-weight: bold;
  119. border-bottom: 2rpx solid #F4F5F6;
  120. padding-bottom: 30rpx;
  121. .h5 {
  122. font-size: 36rpx;
  123. color: #060809;
  124. }
  125. .time {
  126. font-family: Futura, Futura;
  127. font-weight: 500;
  128. font-size: 34rpx;
  129. color: #5E6F90;
  130. font-style: normal;
  131. }
  132. }
  133. }
  134. .order-type-view {
  135. padding: 32rpx;
  136. height: 96rpx;
  137. margin-bottom: 20rpx;
  138. background: #FFFFFF;
  139. align-items: center;
  140. }
  141. .car-model-list {
  142. position: relative;
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: 600;
  145. font-size: 40rpx;
  146. color: #060809;
  147. }
  148. .right-corner-icon {
  149. width: 14rpx;
  150. height: 14rpx;
  151. position: absolute;
  152. bottom: 9rpx;
  153. right: -22rpx;
  154. }
  155. </style>