payPage.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="wrap">
  3. <view class="order-info">
  4. <view class="order-info-top">
  5. <view class="addr u-flex">
  6. <u-icon name="map-fill" color="#fff" size="28"></u-icon>
  7. <view class="addr-text">{{ orderInfo.roadName }}</view>
  8. </view>
  9. <view class="car u-flex">
  10. <view class="car-no">{{ orderInfo.vehicleNo }}</view>
  11. <view class="car-type">临时车</view>
  12. </view>
  13. <view class="time in-time">进场时间:{{ orderInfo.inTime }}</view>
  14. <view class="time out-time">进场时间:{{ orderInfo.outTime }}</view>
  15. <view class="duration">已停放 {{ orderInfo.duration }}</view>
  16. <view class="total-amount">¥{{ orderInfo.totalAmount }}</view>
  17. </view>
  18. <view class="order-info-bottom">
  19. <u-cell-item
  20. center
  21. :border-bottom="false"
  22. :value="orderInfo.preferentialAmount"
  23. :title-style="{ color: '#8A8A8A' }"
  24. :icon-style="{ color: '#D8D8D8' }"
  25. title="已优惠"
  26. ></u-cell-item>
  27. <view class="pay-amount u-flex u-row-between">
  28. <view class="title">应付金额</view>
  29. <view class="amount"><span class="rmb">¥</span>{{ orderInfo.payAmount }}</view>
  30. </view>
  31. <view class="tip">停车费不超过30元,可先离场后在付费</view>
  32. </view>
  33. </view>
  34. <view class="bottom-btn static" @click="handlewxpay">去支付</view>
  35. <u-toast ref="uToast" />
  36. </view>
  37. </template>
  38. <script>
  39. import getUrlParams from '@/utils/getUrlParams.js';
  40. export default {
  41. data() {
  42. return {
  43. orderId: null,
  44. orderInfo: []
  45. };
  46. },
  47. onLoad() {
  48. let locationLocaturl = window.location.hash;
  49. this.orderId = getUrlParams(locationLocaturl, 'orderId'); // 截取orderId
  50. console.log('this.orderId', this.orderId);
  51. this.handleGetOrderinfo(this.orderId);
  52. },
  53. methods: {
  54. handleGetOrderinfo(orderId) {
  55. this.$u.api
  56. .getOrderinfo({ id: orderId })
  57. .then((res) => {
  58. // this.$refs.uToast.show({
  59. // title: res.msg,
  60. // type: 'success',
  61. // });
  62. this.orderInfo = res.data;
  63. console.log('handleGetOrderinfo', JSON.parse(JSON.stringify(res)));
  64. })
  65. .catch((err) => {
  66. this.$refs.uToast.show({
  67. title: err.msg,
  68. type: 'error'
  69. });
  70. console.log('handleGetOrderinfo ', err);
  71. });
  72. },
  73. getCode() {
  74. var local = window.location.href; // 获取页面url
  75. let locationLocaturl = window.location.search;
  76. this.code = getUrlParams(locationLocaturl, 'code'); // 截取code
  77. if (this.code == null || this.code === '') {
  78. // 如果没有code,则去请求
  79. window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${this.config.wxAppid}&redirect_uri=${encodeURIComponent(
  80. local
  81. )}&response_type=code&scope=snsapi_userinfo&#wechat_redirect`;
  82. } else {
  83. this.handleGetWXInfo(this.code); //把code传给后台获取用户信息
  84. }
  85. },
  86. handleGetWXInfo(code) {
  87. // 通过code获取 openId等用户信息,/api/user/wechat/login 为后台接口
  88. let _this = this;
  89. this.$u.api
  90. .getWXInfo(code)
  91. .then((res) => {
  92. if (res.code === 200) {
  93. this.$u.vuex('vuex_wxinfo', res.data);
  94. // 继续支付
  95. }
  96. })
  97. .catch((err) => {
  98. this.$refs.uToast.show({
  99. title: err.msg,
  100. type: 'error'
  101. });
  102. });
  103. },
  104. handlewxpay() {
  105. if (!this.$store.state.vuex_wxinfo.openId) {
  106. // 如果微信openId,则需用code去后台获取
  107. this.$refs.uToast.show({
  108. title: '请登录后重试!',
  109. type: 'info'
  110. // url: '/pages/user/index'
  111. });
  112. this.getCode();
  113. } else {
  114. // 别的业务逻辑
  115. this.getWXPay();
  116. }
  117. },
  118. async getWXPay(id) {
  119. let params = {
  120. orderId: this.orderId,
  121. openid: this.$store.state.vuex_wxinfo.openId,
  122. tradeType: 'test'
  123. };
  124. await this.$wxApi.config();
  125. this.$pay.wxPay(params).then((res) => {
  126. console.log('wxPay', res.code);
  127. if (res.code == 0) {
  128. // 成功
  129. this.$u.route({
  130. url: 'pages/index/index'
  131. // params: {
  132. // keyword: this.keyword
  133. // }
  134. });
  135. } else if (res.code == 1) {
  136. // 取消
  137. // uni.redirectTo({
  138. // url: '/pages/userCenter/myOrder/myOrder'
  139. // })
  140. } else if (res.code == 2) {
  141. this.$refs.uToast.show({
  142. title: '支付失败,请检查!',
  143. type: 'error'
  144. // url: '/pages/user/index'
  145. });
  146. }
  147. });
  148. }
  149. }
  150. };
  151. </script>
  152. <style lang="scss" scoped>
  153. @import './payPage.scss';
  154. </style>