OnsitePayment.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <!-- 场内支付---停车场 -->
  2. <template>
  3. <view class="parking-lock">
  4. <view class="parking-lock-box">
  5. <view class="parking-lock-pay">
  6. <view class="parking-lock-title">支付停车费</view>
  7. <view class="parking-lock-tips">请您确认停车费用,确认后请支付费用,结束停车。谢谢您的使用!</view>
  8. <view class="parking-lock-info">
  9. <view class="parking-lock-info-item" v-for="(item, index) in fieldList" :key="index">
  10. <view>{{ item.label }}</view>
  11. <view :class="item.money ? 'really-money' : ''">{{ orderInfo[item.key] }}</view>
  12. </view>
  13. </view>
  14. <view class="parking-lock-pay-btn">
  15. <button type="default" @click="payMoney" :disabled="!orderInfo.id">立即支付</button>
  16. </view>
  17. <view class="parking-lock-pay-attention">
  18. <text>温馨提示:支付完成请尽快离场,超过免费时长将会重新计费</text>
  19. </view>
  20. </view>
  21. <!-- 支付方式 -->
  22. <ChoosePayment ref="choosePayment" :curOrderList="orderList" :jumpUrl="jumpUrl" :isIndoor="true" />
  23. </view>
  24. <u-toast ref="uToast" />
  25. </view>
  26. </template>
  27. <script>
  28. import ChoosePayment from '@/pages/choosePayment/choosePayment.vue';
  29. export default {
  30. components: {
  31. ChoosePayment
  32. },
  33. data() {
  34. return {
  35. // 支付订单编号
  36. orderList: [],
  37. // 订单信息
  38. orderInfo: {},
  39. // 回调地址
  40. jumpUrl: '',
  41. // 显示的字段集合
  42. fieldList: [
  43. { key: 'vehicleNo', label: '车牌号' },
  44. { key: 'parkingName', label: '停车场名称' },
  45. { key: 'entranceName', label: '入场车道' },
  46. { key: 'inTime', label: '入场时间' },
  47. { key: 'freeDuration', label: '免费时长' },
  48. { key: 'calcDuration', label: '计费时长' },
  49. { key: 'duration', label: '累计停车时长' },
  50. { key: 'payAmount', label: '应缴金额', money: true },
  51. { key: 'id', label: '订单编号' }
  52. ],
  53. paramsObj: {
  54. vehicleNo: '',
  55. parkNo: ''
  56. },
  57. timer: null,
  58. polyOrderId: undefined, // 预支付订单id
  59. isBack: 0,
  60. needPay: ''
  61. };
  62. },
  63. onLoad(options) {
  64. console.log('options', options);
  65. const { vehicleNo, parkNo, isBack, polyOrderId, needPay } = options;
  66. if (vehicleNo && parkNo) {
  67. this.paramsObj.vehicleNo = vehicleNo;
  68. this.paramsObj.parkNo = parkNo;
  69. this.isBack = isBack ?? 0;
  70. this.polyOrderId = polyOrderId;
  71. this.needPay = needPay;
  72. console.log('isBack', Number(this.isBack) !== 1);
  73. if (needPay && needPay === 'not') {
  74. this.$u.route({
  75. url: '/pages/center/order/order',
  76. type: 'redirectTo'
  77. });
  78. } else if (Number(this.isBack) !== 1) {
  79. this.getOrderDetails(vehicleNo, parkNo);
  80. }
  81. this.jumpUrl = `${location.origin}/#/pages/OnsitePayment/OnsitePayment?vehicleNo=${vehicleNo}&parkNo=${parkNo}&isBack=1`;
  82. } else {
  83. uni.showModal({
  84. title: '提示',
  85. content: '参数丢失, 返回首页',
  86. showCancel: false,
  87. success: function (res) {
  88. if (res.confirm) {
  89. uni.switchTab({
  90. url: '/pages/index/index'
  91. });
  92. }
  93. }
  94. });
  95. }
  96. },
  97. onShow() {
  98. const { isBack, polyOrderId, needPay } = this;
  99. if (Number(isBack) === 1 && polyOrderId && needPay !== 'not') {
  100. uni.showLoading({
  101. title: '支付查询中...',
  102. mask: true
  103. });
  104. this.timer = setInterval(() => {
  105. this.handlePayStatus(this.polyOrderId);
  106. }, 2000);
  107. }
  108. },
  109. methods: {
  110. /**
  111. * 立即支付
  112. * @date 2023-02-22
  113. * @returns {any}
  114. */
  115. payMoney() {
  116. this.$nextTick(() => {
  117. this.$refs['choosePayment'].openPopup({ ...this.orderInfo }, 'single', 'parking');
  118. });
  119. },
  120. /**
  121. * 根据订单id查询订单信息
  122. * @date 2023-02-22
  123. * @param {any} vehicleNo
  124. * @param {any} parkNo
  125. * @returns {any}
  126. */
  127. async getOrderDetails(vehicleNo, parkNo) {
  128. try {
  129. const { code, data } = await this.$u.api.getOrderInfoByParknoApi({ vehicleNo, parkNo });
  130. if (code === 200) {
  131. const { id } = data;
  132. this.orderList = [id];
  133. this.orderInfo = data;
  134. if (Number(data?.payStatus) === 1) {
  135. this.$refs.uToast.show({
  136. title: '该订单已支付完成!',
  137. type: 'success',
  138. url: '/pages/common/paymentSuccess/paymentSuccess',
  139. callback: () => {
  140. // this.loading = false;
  141. }
  142. });
  143. }
  144. }
  145. } catch (error) {
  146. this.showToast(error?.msg, 'error');
  147. }
  148. },
  149. /**
  150. * 反复查询支付状态
  151. * @param { String } orderId
  152. */
  153. async handlePayStatus(orderId) {
  154. try {
  155. const { code, data } = await this.$u.api.getOrderInfo({ orderId });
  156. if (code === 200) {
  157. if (data?.payStatus === 1 || data?.payStatus === 3) {
  158. clearInterval(this.timer);
  159. this.$refs.uToast.show({
  160. title: '该订单已支付成功!',
  161. type: 'success',
  162. url: '/pages/common/paymentSuccess/paymentSuccess',
  163. callback: () => {
  164. uni.hideLoading();
  165. }
  166. });
  167. }
  168. }
  169. } catch (error) {
  170. clearInterval(this.timer);
  171. uni.hideLoading();
  172. }
  173. },
  174. /**
  175. * @description: 显示提示信息
  176. * @param {*} title
  177. * @param {*} type
  178. * @return {*}
  179. */
  180. showToast(title = '操作失败', type = 'error') {
  181. this.$refs.uToast.show({
  182. title,
  183. type
  184. });
  185. }
  186. }
  187. };
  188. </script>
  189. <style lang="scss" scoped>
  190. @import './OnsitePayment.scss';
  191. </style>