batteryRecord.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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 v-if="car_info.car_sn" @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">{{dayjsFn(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. dayjsFn(time){
  65. return dayjs(time).format('YYYY-MM-DD hh:mm:ss')
  66. },
  67. srcFn(url){
  68. uni.navigateTo({
  69. url
  70. })
  71. },
  72. async listFn() {
  73. let {
  74. data
  75. } = await request.postApi(config_gyq.API_FLK_CABINET_EXCHANGE_ORDER, {
  76. car_sn: this.car_info.car_sn
  77. })
  78. if (data.code == 200) {
  79. this.list = data.data.list
  80. this.list.map(item=>{
  81. item.btn_battery = item.btn_battery ? item.btn_battery.join(',') : ''
  82. item.bor_battery = item.bor_battery ? item.bor_battery.join(',') : ''
  83. item.ctime = common.formatTime(item.ctime)
  84. })
  85. }
  86. }
  87. }
  88. }
  89. </script>
  90. <style scoped lang="scss">
  91. .car-model-text{
  92. max-width: 260rpx;
  93. text-overflow: ellipsis;
  94. overflow: hidden;
  95. white-space: nowrap;
  96. }
  97. .batteryList {
  98. width: 698rpx;
  99. background: #FFFFFF;
  100. border-radius: 32rpx;
  101. padding: 32rpx;
  102. margin: auto;
  103. margin-top: 20rpx;
  104. position: relative;
  105. .top {
  106. position: absolute;
  107. right: 30rpx;
  108. bottom: 30rpx;
  109. width: 40rpx;
  110. height: 40rpx;
  111. }
  112. .dl {
  113. display: flex;
  114. align-items: center;
  115. margin-top: 30rpx;
  116. .dt {
  117. font-family: PingFangSC, PingFang SC;
  118. font-size: 28rpx;
  119. color: #9FA7B7;
  120. padding-right: 30rpx;
  121. }
  122. .dd {
  123. font-family: Futura, Futura;
  124. font-weight: 500;
  125. font-size: 30rpx;
  126. color: #060809;
  127. }
  128. }
  129. .header {
  130. display: flex;
  131. justify-content: space-between;
  132. align-items: center;
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: bold;
  135. border-bottom: 2rpx solid #F4F5F6;
  136. padding-bottom: 30rpx;
  137. .h5 {
  138. font-size: 36rpx;
  139. color: #060809;
  140. }
  141. .time {
  142. font-family: Futura, Futura;
  143. font-weight: 500;
  144. font-size: 34rpx;
  145. color: #5E6F90;
  146. font-style: normal;
  147. }
  148. }
  149. }
  150. .order-type-view {
  151. padding: 32rpx;
  152. height: 96rpx;
  153. margin-bottom: 20rpx;
  154. background: #FFFFFF;
  155. align-items: center;
  156. }
  157. .car-model-list {
  158. position: relative;
  159. font-family: PingFangSC, PingFang SC;
  160. font-weight: 600;
  161. font-size: 40rpx;
  162. color: #060809;
  163. }
  164. .right-corner-icon {
  165. width: 14rpx;
  166. height: 14rpx;
  167. position: absolute;
  168. bottom: 9rpx;
  169. right: -22rpx;
  170. }
  171. </style>