batteryRecord.vue 4.0 KB

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