parkexport.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. <template>
  2. <!-- 地磁 -->
  3. <view class="parking-lock">
  4. <!-- 地磁支付 -->
  5. <template v-if="infoData">
  6. <view class="parking-lock-pay">
  7. <view class="parking-lock-title">支付停车费</view>
  8. <view class="parking-lock-tips">请您确认停车费用,确认后请支付费用,结束停车。谢谢您的使用!</view>
  9. <view class="parking-lock-info">
  10. <view class="parking-lock-info-item">
  11. <view>车牌号</view>
  12. <view class="weight">{{ infoData.vehicleNo }}</view>
  13. </view>
  14. <view class="parking-lock-info-item">
  15. <view>停车场名称</view>
  16. <view class="weight">{{ infoData.parkingName }}</view>
  17. </view>
  18. <view class="parking-lock-info-item">
  19. <view>入场车道</view>
  20. <view class="weight">{{ infoData.entranceName }}</view>
  21. </view>
  22. <view class="parking-lock-info-item">
  23. <view>入场时间</view>
  24. <view class="weight">{{ infoData.inTime }}</view>
  25. </view>
  26. <view class="parking-lock-info-item">
  27. <view>出场车道</view>
  28. <view class="weight">{{ infoData.outEntranceName }}</view>
  29. </view>
  30. <view class="parking-lock-info-item">
  31. <view>出场时间</view>
  32. <view class="weight">{{ infoData.outTime }}</view>
  33. </view>
  34. <!-- <view class="parking-lock-info-item">
  35. <view>通道名称</view>
  36. <view class="weight">{{infoData.roadwayName}}</view>
  37. </view> -->
  38. <view class="parking-lock-info-item">
  39. <view>免费时长</view>
  40. <view class="weight">{{ infoData.freeDuration || `0天0时${free_time}分0秒` }}</view>
  41. </view>
  42. <view class="parking-lock-info-item">
  43. <view class="weight">计费时长</view>
  44. <view class="weight">{{ infoData.calcDuration }}</view>
  45. </view>
  46. <view class="parking-lock-info-item">
  47. <view>累计停车时长</view>
  48. <view class="weight">{{ infoData.duration }}</view>
  49. </view>
  50. <view class="parking-lock-info-item">
  51. <view>应收金额</view>
  52. <view class="weight">{{ infoData.totalAmount }}元</view>
  53. </view>
  54. <view class="parking-lock-info-item">
  55. <view>订单编号</view>
  56. <view class="weight">{{ infoData.id }}</view>
  57. </view>
  58. </view>
  59. <view class="parking-lock-pay-btn">
  60. <button type="default" v-if="isPay" @click="onEntraceClick">支付出场</button>
  61. <button type="default" v-else @click="jumpHome('/pages/index/index')">支付成功,返回首页</button>
  62. </view>
  63. </view>
  64. </template>
  65. <template v-else>
  66. <view class="parking-lock-info">
  67. <view class="parking-lock-info-item">
  68. <view>出口无车辆</view>
  69. </view>
  70. </view>
  71. </template>
  72. <!-- 支付方式 -->
  73. <ChoosePayment
  74. ref="choosePayment"
  75. :payWayPop="payWayPop"
  76. :curOrderList="orderList"
  77. :jumpUrl="jumpUrl"
  78. :exportFlag="true"
  79. :sanPay="saopay"
  80. :otherParams="{ parkType: 'export' }"
  81. @closePaymentMethod="closePaymentMethod"
  82. />
  83. <u-toast ref="uToast" />
  84. </view>
  85. </template>
  86. <script>
  87. import ChoosePayment from '@/pages/choosePayment/choosePayment.vue';
  88. export default {
  89. components: {
  90. ChoosePayment
  91. },
  92. data() {
  93. return {
  94. intoInfo: {
  95. parkNo: '',
  96. roadwayNo: '',
  97. polyOrderId: '',
  98. isBack: 0
  99. },
  100. saopay: true,
  101. payWayPop: false, // 支付弹框
  102. infoData: undefined, // 订单信息
  103. orderList: [], // 支付订单列表
  104. jumpUrl: location.href + '&isBack=1', // 回调地址
  105. timer: null, // 轮询
  106. isPay: false // 支付按钮显示
  107. };
  108. },
  109. onLoad(page) {
  110. this.intoInfo.parkNo = page?.parkNo;
  111. this.intoInfo.roadwayNo = page?.roadwayNo;
  112. this.intoInfo.polyOrderId = page?.polyOrderId;
  113. this.intoInfo.isBack = page?.isBack;
  114. },
  115. onShow() {
  116. this.getOrderDetails(this.intoInfo.parkNo, this.intoInfo.roadwayNo);
  117. if (this.intoInfo.polyOrderId && this.intoInfo.isBack == 1) {
  118. uni.showLoading({
  119. title: '订单状态查询中...'
  120. });
  121. this.timer = setInterval(() => {
  122. this.handlePayStatus(this.intoInfo.polyOrderId);
  123. }, 1000);
  124. }
  125. },
  126. onUnload() {
  127. clearInterval(this.timer);
  128. },
  129. methods: {
  130. /**
  131. * 立即支付
  132. */
  133. onEntraceClick() {
  134. this.$nextTick(() => {
  135. this.$refs['choosePayment'].openPopup({ ...this.infoData }, 'single', 'parking');
  136. });
  137. },
  138. /**
  139. * 反复查询支付状态
  140. * @param { String } orderId
  141. */
  142. handlePayStatus(orderId) {
  143. this.$u.api
  144. .getOrderStateExportApi({
  145. orderId
  146. })
  147. .then((res) => {
  148. if (res.code === 200) {
  149. if (res.data.payStatus === 1 || res.data.payStatus === 3) {
  150. clearInterval(this.timer);
  151. uni.hideLoading();
  152. this.getOrderDetails(this.intoInfo.parkNo, this.intoInfo.roadwayNo);
  153. } else if (res.data.payStatus === 2) {
  154. this.isPay = true;
  155. uni.hideLoading();
  156. }
  157. } else {
  158. clearInterval(this.timer);
  159. uni.hideLoading();
  160. this.$refs.uToast.show({
  161. title: res.msg || '支付失败!',
  162. type: 'error'
  163. });
  164. }
  165. })
  166. .catch(() => {
  167. uni.hideLoading();
  168. clearInterval(this.timer);
  169. });
  170. },
  171. /**
  172. * 查询订单信息
  173. * @param { String } parkNo 停车场编号
  174. * @param { String } roadwayNo 出口编号
  175. */
  176. getOrderDetails(parkNo, roadwayNo) {
  177. uni.showLoading({
  178. title: '订单查询中...'
  179. });
  180. this.$u.api
  181. .getDetailExportApi({
  182. parkNo,
  183. roadwayNo
  184. })
  185. .then((res) => {
  186. if (res.code === 200) {
  187. this.infoData = res.data;
  188. this.orderList = [res.data.id];
  189. if (res.data.orderStatus == 2 || res.data.orderStatus == 3) {
  190. this.isPay = true;
  191. } else {
  192. this.isPay = false;
  193. }
  194. } else {
  195. this.$refs.uToast.show({
  196. title: res.msg || '订单无数据',
  197. type: 'error'
  198. });
  199. }
  200. uni.hideLoading();
  201. })
  202. .catch((err) => {
  203. uni.hideLoading();
  204. });
  205. },
  206. /**
  207. * 关闭支付弹框
  208. */
  209. closePaymentMethod() {
  210. this.payWayPop = false;
  211. },
  212. jumpHome(url) {
  213. uni.switchTab({
  214. url: url
  215. });
  216. }
  217. }
  218. };
  219. </script>
  220. <style lang="scss" scoped>
  221. @import './parkexport.scss';
  222. </style>