openCabinet.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <view class="container-view">
  3. <view class="open-bg-view">
  4. <img class="open-bg" src="https://qiniu.bms16.com/FqNzU4Wh2kry5H0EqC5zeM2thRFg" alt="">
  5. </view>
  6. <view class="explain-view">
  7. <view class="explain-num-view flex-row">
  8. <!-- <text><text class="explain-num">{{empty_door_id}} </text>{{ $t('号仓门已打开') }}</text> -->
  9. <text>{{ $t('仓门已打开') }}</text>
  10. <!-- <text v-if="list.status == 2">{{ $t('换电中') }}</text>
  11. <text v-if="list.status == 3">{{ $t('换电成功') }}</text>
  12. <text v-if="list.status == 4">{{ $t('换电失败') }}</text> -->
  13. </view>
  14. <view class="explain-text">{{ $t('请存入更换电池') }},{{ $t('取走满电电池') }},{{ $t('并关好仓门') }}</view>
  15. <!-- <view class="explain-text">{{ $t('请') }} {{ $t('归还') }} / {{ $t('取出') }} {{ $t('电池并关上仓门') }}</view> -->
  16. <!-- <view class="explain-text">{{ $t('请取出电池并关上仓门') }}</view> -->
  17. <!-- <view class="explain-text-grap">{{ $t('归还完成后电柜会自动打开可租仓门') }}</view> -->
  18. <!-- <view class="explain-text-grap">{{ $t('自动为您匹配最高电量电池') }}</view> -->
  19. </view>
  20. <!-- {{ $t('完成弹窗') }} -->
  21. <view v-if="isOverModal" class="modal-group">
  22. <view class="payment-info-main">
  23. <view class="payment-info-top flex-row">
  24. <!-- <img class="check-icon" :src="showtxt.img" alt=""> -->
  25. <img v-if="list.status==3" class="check-icon" src="https://qiniu.bms16.com/Fg5C4OVF17Q8p5-mHu7CoFne0Zqp" alt="">
  26. <img v-if="list.status==4" class="check-icon" src="https://qiniu.bms16.com/FmGcOOZZm09nx9lH3lez7D3DYHKn" alt="">
  27. </view>
  28. <view v-if="list.status==3" class="open-result-view">
  29. <view class="open-result flex-row">{{ $t('换电成功') }}</view>
  30. <view class="open-result-tip flex-row">{{ $t('祝您骑行愉快') }}</view>
  31. </view>
  32. <view v-if="list.status==4" class="open-result-view">
  33. <view class="open-result flex-row">{{ $t('换电失败') }}</view>
  34. <view class="open-result-tip flex-row">{{list.fail_reason}}</view>
  35. </view>
  36. <view class="over-btn-view">
  37. <view v-if="list.status==3" @tap="tapToIndex" class="over-btn flex-row">{{ $t('回到首页') }}</view>
  38. <view v-if="list.status==4" @tap="connectStore" class="over-btn flex-row">{{ $t('联系门店') }}</view>
  39. <view v-if="list.status==4" @click="srcFn(`/pages/index/index`)" class="over-btn flex-row">{{ $t('确认') }}</view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. const http = require('../../common/request.js');
  47. const config = require('../../common/config_gyq.js');
  48. const common = require('../../common/common.js');
  49. var bluetooth = require('../../common/bluetooth.js');
  50. const DF_CAB_INFO_DONE = 10000; //机柜信息传输完成
  51. export default {
  52. data() {
  53. return {
  54. isOverModal:false,
  55. order_sn: '',
  56. time: null,
  57. list: {}
  58. };
  59. },
  60. /**
  61. * 生命周期函数--监听页面加载
  62. */
  63. onLoad: function(options) {
  64. this.order_sn = options.order_sn
  65. this.exchangeStatusFn()
  66. this.time = setInterval(() => {
  67. this.exchangeStatusFn()
  68. }, 1200)
  69. },
  70. /**
  71. * 生命周期函数--监听页面显示
  72. */
  73. onShow: function() {
  74. },
  75. onUnload() {
  76. this.clearIntervalTimer()
  77. },
  78. methods: {
  79. srcFn(url){
  80. uni.reLaunch({
  81. url: '/pages/index/index',
  82. })
  83. },
  84. tapToIndex() {
  85. this.isOverModal = false
  86. uni.reLaunch({
  87. url: '/pages/index/index',
  88. })
  89. },
  90. connectStore() {
  91. uni.makePhoneCall({
  92. phoneNumber: this.list.link_phone //仅为示例
  93. });
  94. },
  95. clearIntervalTimer() {
  96. if (this.time == null) return
  97. clearInterval(this.time)
  98. this.time = null
  99. },
  100. async exchangeStatusFn() {
  101. let {
  102. data
  103. } = await http.postApi(config.API_FLK_CABINET_EXCHANGE_STATUS, {
  104. order_sn: this.order_sn
  105. })
  106. if (data.code == 200) {
  107. this.list = data.data.statusInfo
  108. if (data.data.statusInfo.status == 3 || data.data.statusInfo.status == 4 || data.data.statusInfo.status == 5) {
  109. this.clearIntervalTimer()
  110. this.isOverModal = true
  111. }
  112. } else {
  113. common.simpleToast(data.msg)
  114. }
  115. }
  116. }
  117. };
  118. </script>
  119. <style>
  120. @import './openCabinet.css';
  121. </style>