geomagnetismLock.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. <template>
  2. <!-- 地磁 -->
  3. <view class="parking-lock">
  4. <view class="Jump">
  5. <view class="Jump-btn" @click="jumpArrears"> 欠费补缴 </view>
  6. </view>
  7. <!-- 地磁支付 -->
  8. <template v-if="parkingLockStatus === 1">
  9. <view class="parking-lock-pay">
  10. <view class="parking-lock-title">支付停车费</view>
  11. <view class="parking-lock-tips">请您确认停车费用,确认后请支付费用,结束停车。谢谢您的使用!</view>
  12. <view class="parking-lock-info">
  13. <view class="parking-lock-info-item">
  14. <view>车牌号</view>
  15. <view class="weight">{{ orderInfo.vehicleNo }}</view>
  16. </view>
  17. <view class="parking-lock-info-item">
  18. <view>停车场名称</view>
  19. <view>{{ orderInfo.roadName }}</view>
  20. </view>
  21. <view class="parking-lock-info-item">
  22. <view>停车泊位</view>
  23. <view>{{ orderInfo.spaceName }}</view>
  24. </view>
  25. <view class="parking-lock-info-item">
  26. <view>入场时间</view>
  27. <view>{{ orderInfo.inTime }}</view>
  28. </view>
  29. <view class="parking-lock-info-item">
  30. <view>出场时间</view>
  31. <view>{{ orderInfo.outTime }}</view>
  32. </view>
  33. <view class="parking-lock-info-item">
  34. <view>免费时长</view>
  35. <view>{{ orderInfo.freeDuration || `0天0时${free_time}分0秒` }}</view>
  36. </view>
  37. <view class="parking-lock-info-item">
  38. <view>计费时长</view>
  39. <view>{{ orderInfo.calcDuration || 0 }}</view>
  40. </view>
  41. <view class="parking-lock-info-item">
  42. <view>累计停车时长</view>
  43. <view>{{ orderInfo.duration || 0 }}</view>
  44. </view>
  45. <view class="parking-lock-info-item">
  46. <view>应缴金额</view>
  47. <view class="really-money">{{ orderInfo.payAmount || 0 }} 元</view>
  48. </view>
  49. <view class="parking-lock-info-item">
  50. <view>订单编号</view>
  51. <view>{{ orderInfo.orderId }}</view>
  52. </view>
  53. </view>
  54. <view class="parking-lock-pay-btn" v-if="is_pay">
  55. <button type="default" @click="payMoney">立即支付</button>
  56. </view>
  57. </view>
  58. </template>
  59. <template v-else-if="parkingLockStatus === 2">
  60. <view class="parking-lock-pay">
  61. <view class="parking-lock-tips">{{ tipsMsg }}</view>
  62. </view>
  63. </template>
  64. <!-- 支付方式 -->
  65. <ChoosePayment
  66. ref="choosePayment"
  67. :curOrderList="[orderId]"
  68. :jumpUrl="jumpUrl"
  69. :payeeId="payeeId"
  70. :payeeName="payeeName"
  71. :pursueType="pursueType"
  72. :vehicleNo="orderInfo.vehicleNo"
  73. />
  74. <u-popup v-model="show" mode="center" border-radius="14" width="200rpx" height="200rpx">
  75. <view class="loadingSelect">订单查询中...</view>
  76. <view class="spinner">
  77. <view class="rect1"></view>
  78. <view class="rect2"></view>
  79. <view class="rect3"></view>
  80. <view class="rect4"></view>
  81. <view class="rect5"></view>
  82. </view>
  83. </u-popup>
  84. <u-toast ref="uToast" />
  85. </view>
  86. </template>
  87. <script>
  88. import ChoosePayment from '@/pages/choosePayment/choosePayment.vue';
  89. export default {
  90. components: {
  91. ChoosePayment
  92. },
  93. data() {
  94. return {
  95. // 车位锁状态 1:需支付 2:查询失败返回提醒
  96. parkingLockStatus: 0,
  97. // 支付方式选择弹框
  98. payWayPop: false,
  99. // 订单编号
  100. orderList: [],
  101. // 提示信息
  102. tipsMsg: null,
  103. // 轮询
  104. timer: null,
  105. // 订单信息
  106. orderInfo: {},
  107. // 订单id
  108. orderId: null,
  109. // 重定向地址
  110. jumpUrl: location.href + '&isBack=1',
  111. show: false,
  112. isBack: '',
  113. polyOrderId: '',
  114. // 地磁
  115. spaceId: '',
  116. payeeId: '',
  117. payeeName: '',
  118. pursueType: '',
  119. is_pay: false
  120. };
  121. },
  122. onLoad(page) {
  123. if (page.orderId) {
  124. this.orderId = page?.orderId;
  125. this.spaceId = page?.spaceId;
  126. this.payeeId = page?.payeeId;
  127. this.polyOrderId = page?.polyOrderId;
  128. this.pursueType = page?.pursueType;
  129. this.isBack = page?.isBack;
  130. } else {
  131. this.tipsMsg = page.msg || '参数丢失!';
  132. this.parkingLockStatus = 2;
  133. }
  134. },
  135. onShow() {
  136. if (this.orderId) {
  137. this.getOrderDetails(this.spaceId, this.orderId, this.payeeId);
  138. if (this.polyOrderId && this.isBack == 1) {
  139. this.timer = setInterval(() => {
  140. this.show = true;
  141. this.handlePayStatus(this.polyOrderId);
  142. }, 1000);
  143. }
  144. } else {
  145. this.show = false;
  146. }
  147. },
  148. onUnload() {
  149. if (this.timer) {
  150. clearInterval(this.timer);
  151. }
  152. },
  153. methods: {
  154. jumpArrears() {
  155. uni.navigateTo({
  156. url: '../center/order/order?orderStatus=2'
  157. });
  158. },
  159. /**
  160. * 反复查询支付状态
  161. * @param { String } orderId
  162. */
  163. handlePayStatus(orderId) {
  164. this.$u.api
  165. .getOrderInfo({
  166. orderId
  167. })
  168. .then((res) => {
  169. if (res.code === 200) {
  170. if (res.data.payStatus === 1 || res.data.payStatus === 3) {
  171. this.show = false;
  172. clearInterval(this.timer);
  173. this.is_pay = false;
  174. uni.showModal({
  175. title: '提示',
  176. content: '支付成功,返回首页',
  177. showCancel: false,
  178. success: (res) => {
  179. if (res.confirm) {
  180. uni.switchTab({
  181. url: '/pages/index/index'
  182. });
  183. }
  184. }
  185. });
  186. } else if (res.data.payStatus === 2) {
  187. this.is_pay = true;
  188. }
  189. } else {
  190. this.show = false;
  191. clearInterval(this.timer);
  192. this.$refs.uToast.show({
  193. title: res.msg,
  194. type: 'error'
  195. });
  196. }
  197. })
  198. .catch(() => {
  199. this.show = false;
  200. clearInterval(this.timer);
  201. });
  202. },
  203. /**
  204. * 立即支付
  205. */
  206. payMoney() {
  207. this.$nextTick(() => {
  208. this.$refs['choosePayment'].openPopup({ ...this.orderInfo }, 'single', 'road');
  209. });
  210. },
  211. /**
  212. * 查询订单信息
  213. * @param { String } spaceId 车位ID
  214. * @param { String } orderId 订单id
  215. * @param { String } payeeId 收费员ID
  216. */
  217. getOrderDetails(spaceId, orderId, payeeId) {
  218. this.$u.api
  219. .geomaLockDetailsApi({
  220. spaceId,
  221. orderId,
  222. payeeId
  223. })
  224. .then((res) => {
  225. if (res.code === 200 && res.data.id) {
  226. this.payeeName = res.data.payeeName;
  227. this.parkingLockStatus = 1;
  228. this.orderInfo = res.data;
  229. this.show = false;
  230. if (res.data.payStatus == 0 || res.data.payStatus == 2 || res.data.payStatus == 3) {
  231. this.is_pay = true;
  232. } else if (res.data.payStatus == 1) {
  233. this.is_pay = false;
  234. uni.showModal({
  235. title: '提示',
  236. content: '订单已支付,返回首页',
  237. showCancel: false,
  238. success: function (res) {
  239. if (res.confirm) {
  240. uni.switchTab({
  241. url: '/pages/index/index'
  242. });
  243. }
  244. }
  245. });
  246. }
  247. if (res.data.payAmount == 0) {
  248. this.is_pay = false;
  249. }
  250. } else {
  251. this.$refs.uToast.show({
  252. title: res.msg || '订单无数据',
  253. type: 'error'
  254. });
  255. }
  256. });
  257. },
  258. /**
  259. * 关闭支付弹框
  260. */
  261. closePaymentMethod() {
  262. this.payWayPop = false;
  263. }
  264. }
  265. };
  266. </script>
  267. <style lang="scss" scoped>
  268. @import './geomagnetismLock.scss';
  269. .Jump {
  270. position: fixed;
  271. top: 50px;
  272. right: 0;
  273. background-color: #f6f6ff;
  274. &-btn {
  275. color: rgb(0, 140, 255);
  276. padding: 20rpx 30rpx;
  277. }
  278. }
  279. </style>