batteryRecord.vue 4.1 KB

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