batteryRecord.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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 == 5" class="h5">部分成功</view>
  17. <view v-if="item.status == 0" class="h5">未知</view>
  18. <view class="time">{{item.ctime}}</view>
  19. </view>
  20. <view class="dl">
  21. <view class="dt">换电单号</view>
  22. <view class="dd">{{item.order_sn}}</view>
  23. </view>
  24. <view class="dl">
  25. <view class="dt">归还电池</view>
  26. <view class="dd">{{item.btn_battery}}</view>
  27. </view>
  28. <view class="dl">
  29. <view class="dt">借出电池</view>
  30. <view class="dd">{{item.bor_battery}}</view>
  31. </view>
  32. <view class="dl">
  33. <view class="dt">换电类型</view>
  34. <view v-if="item.type == 0" class="dd">机柜换电</view>
  35. <view v-if="item.type == 1" class="dd">门店换电</view>
  36. </view>
  37. <view class="dl">
  38. <view class="dt">电柜名称</view>
  39. <view class="dd">{{item.dev_name}}</view>
  40. </view>
  41. <!-- <image class="top" src="https://qiniu.bms16.com/FpVjOP5pZY1gXcCcS3TwI0GkywEe" mode=""></image> -->
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import dayjs from 'dayjs'
  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. dayjsFn(time){
  64. console.log(time)
  65. return dayjs(time * 1000).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.filter(item=>{
  82. if(item){
  83. return item
  84. }
  85. })
  86. item.bor_battery = item.bor_battery.filter(item=>{
  87. if(item){
  88. return item
  89. }
  90. })
  91. item.btn_battery = item.btn_battery ? item.btn_battery.join(',') : []
  92. item.bor_battery = item.bor_battery ? item.bor_battery.join(',') : []
  93. item.ctime = dayjs(item.ctime * 1000).format('YYYY-MM-DD HH:mm:ss')
  94. })
  95. }
  96. }
  97. }
  98. }
  99. </script>
  100. <style scoped lang="scss">
  101. .car-model-text{
  102. max-width: 260rpx;
  103. text-overflow: ellipsis;
  104. overflow: hidden;
  105. white-space: nowrap;
  106. }
  107. .batteryList {
  108. width: 698rpx;
  109. background: #FFFFFF;
  110. border-radius: 32rpx;
  111. padding: 32rpx;
  112. margin: auto;
  113. margin-top: 20rpx;
  114. position: relative;
  115. .top {
  116. position: absolute;
  117. right: 30rpx;
  118. bottom: 30rpx;
  119. width: 40rpx;
  120. height: 40rpx;
  121. }
  122. .dl {
  123. display: flex;
  124. align-items: center;
  125. margin-top: 30rpx;
  126. .dt {
  127. font-family: PingFangSC, PingFang SC;
  128. font-size: 28rpx;
  129. color: #9FA7B7;
  130. padding-right: 30rpx;
  131. }
  132. .dd {
  133. font-family: Futura, Futura;
  134. font-weight: 500;
  135. font-size: 30rpx;
  136. color: #060809;
  137. }
  138. }
  139. .header {
  140. display: flex;
  141. justify-content: space-between;
  142. align-items: center;
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: bold;
  145. border-bottom: 2rpx solid #F4F5F6;
  146. padding-bottom: 30rpx;
  147. .h5 {
  148. font-size: 36rpx;
  149. color: #060809;
  150. }
  151. .time {
  152. font-family: Futura, Futura;
  153. font-weight: 500;
  154. font-size: 34rpx;
  155. color: #5E6F90;
  156. font-style: normal;
  157. }
  158. }
  159. }
  160. .order-type-view {
  161. padding: 32rpx;
  162. height: 96rpx;
  163. margin-bottom: 20rpx;
  164. background: #FFFFFF;
  165. align-items: center;
  166. }
  167. .car-model-list {
  168. position: relative;
  169. font-family: PingFangSC, PingFang SC;
  170. font-weight: 600;
  171. font-size: 40rpx;
  172. color: #060809;
  173. }
  174. .right-corner-icon {
  175. width: 14rpx;
  176. height: 14rpx;
  177. position: absolute;
  178. bottom: 9rpx;
  179. right: -22rpx;
  180. }
  181. </style>