batteryRecord.vue 4.7 KB

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