parkexport20230220.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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. <PaymentMethod
  74. :payWayPop="payWayPop"
  75. :curOrderList="orderList"
  76. :jumpUrl="jumpUrl"
  77. :exportFlag="true"
  78. :sanPay="saopay"
  79. :otherParams="{ parkType: 'export' }"
  80. @closePaymentMethod="closePaymentMethod"
  81. ></PaymentMethod>
  82. <u-toast ref="uToast" />
  83. </view>
  84. </template>
  85. <script>
  86. import PaymentMethod from '@/pages/paymentMethod/paymentMethod.vue';
  87. export default {
  88. components: {
  89. PaymentMethod,
  90. },
  91. data() {
  92. return {
  93. intoInfo: {
  94. parkNo: '',
  95. roadwayNo: '',
  96. polyOrderId: '',
  97. isBack: 0
  98. },
  99. saopay: true,
  100. payWayPop: false, // 支付弹框
  101. infoData: undefined, // 订单信息
  102. orderList: [], // 支付订单列表
  103. jumpUrl: location.href + '&isBack=1', // 回调地址
  104. timer: null, // 轮询
  105. isPay: false // 支付按钮显示
  106. };
  107. },
  108. onLoad(page) {
  109. this.intoInfo.parkNo = page?.parkNo;
  110. this.intoInfo.roadwayNo = page?.roadwayNo;
  111. this.intoInfo.polyOrderId = page?.polyOrderId;
  112. this.intoInfo.isBack = page?.isBack;
  113. },
  114. onShow() {
  115. this.getOrderDetails(this.intoInfo.parkNo, this.intoInfo.roadwayNo);
  116. if (this.intoInfo.polyOrderId && this.intoInfo.isBack == 1) {
  117. uni.showLoading({
  118. title: '订单状态查询中...'
  119. });
  120. this.timer = setInterval(() => {
  121. this.handlePayStatus(this.intoInfo.polyOrderId);
  122. }, 1000);
  123. }
  124. },
  125. onUnload() {
  126. clearInterval(this.timer);
  127. },
  128. methods: {
  129. /**
  130. * 立即支付
  131. */
  132. onEntraceClick() {
  133. this.payWayPop = true;
  134. },
  135. /**
  136. * 反复查询支付状态
  137. * @param { String } orderId
  138. */
  139. handlePayStatus(orderId) {
  140. this.$u.api
  141. .getOrderStateExportApi({
  142. orderId
  143. })
  144. .then((res) => {
  145. if (res.code === 200) {
  146. if (res.data.payStatus === 1 || res.data.payStatus === 3) {
  147. clearInterval(this.timer);
  148. uni.hideLoading();
  149. this.getOrderDetails(this.intoInfo.parkNo, this.intoInfo.roadwayNo);
  150. } else if (res.data.payStatus === 2) {
  151. this.isPay = true;
  152. uni.hideLoading();
  153. }
  154. } else {
  155. clearInterval(this.timer);
  156. uni.hideLoading();
  157. this.$refs.uToast.show({
  158. title: res.msg || '支付失败!',
  159. type: 'error'
  160. });
  161. }
  162. })
  163. .catch(() => {
  164. uni.hideLoading();
  165. clearInterval(this.timer);
  166. });
  167. },
  168. /**
  169. * 查询订单信息
  170. * @param { String } parkNo 停车场编号
  171. * @param { String } roadwayNo 出口编号
  172. */
  173. getOrderDetails(parkNo, roadwayNo) {
  174. uni.showLoading({
  175. title: '订单查询中...'
  176. });
  177. this.$u.api
  178. .getDetailExportApi({
  179. parkNo,
  180. roadwayNo
  181. })
  182. .then((res) => {
  183. if (res.code === 200) {
  184. this.infoData = res.data;
  185. this.orderList = [res.data.id];
  186. if (res.data.orderStatus == 2 || res.data.orderStatus == 3) {
  187. this.isPay = true;
  188. } else {
  189. this.isPay = false;
  190. }
  191. } else {
  192. this.$refs.uToast.show({
  193. title: res.msg || '订单无数据',
  194. type: 'error'
  195. });
  196. }
  197. uni.hideLoading();
  198. })
  199. .catch((err) => {
  200. uni.hideLoading();
  201. });
  202. },
  203. /**
  204. * 关闭支付弹框
  205. */
  206. closePaymentMethod() {
  207. this.payWayPop = false;
  208. },
  209. jumpHome(url) {
  210. uni.switchTab({
  211. url: url
  212. });
  213. }
  214. }
  215. };
  216. </script>
  217. <style lang="scss" scoped>
  218. @import './parkexport.scss';
  219. </style>