result.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <!-- 支付结果页面 -->
  2. <template>
  3. <!-- result:{{result}} -->
  4. <view class="pay-result-box ss-flex-col ss-row-center ss-col-center">
  5. <!-- 信息展示 -->
  6. <view class="pay-waiting ss-m-b-30" v-if="payResult === 'waiting'" />
  7. <image class="pay-img ss-m-b-30" v-if="payResult === 'success'"
  8. :src="sheep.$url.static('/static/images/order_pay_success.gif')" />
  9. <image class="pay-img ss-m-b-30" v-if="['failed', 'closed'].includes(payResult)"
  10. :src="sheep.$url.static('/static/images/order_paty_fail.gif')" />
  11. <view class="tip-text ss-m-b-30" v-if="payResult === 'success'">支付成功</view>
  12. <view class="tip-text ss-m-b-30" v-if="payResult === 'failed'">支付失败</view>
  13. <view class="tip-text ss-m-b-30" v-if="payResult === 'closed'">该订单已关闭</view>
  14. <view class="tip-text ss-m-b-30" v-if="payResult === 'waiting'">检测支付结果...</view>
  15. <view class="pay-total-num ss-flex" v-if="payResult === 'success'">
  16. <view>¥{{ fen2yuan(state.orderInfo.price) }}</view>
  17. </view>
  18. <!-- 操作区 -->
  19. <view class="btn-box ss-flex ss-row-center ss-m-t-50">
  20. <button class="back-btn ss-reset-button" @tap="goBack">
  21. 返回首页
  22. </button>
  23. <!-- <button class="check-btn ss-reset-button" v-if="payResult === 'failed'" @tap="
  24. sheep.$router.redirect('/pages/pay/index', { id: state.id, orderType: state.orderType })
  25. ">
  26. 重新支付
  27. </button> -->
  28. <button class="check-btn ss-reset-button" v-if="payResult === 'success'" @tap="goOrderList">
  29. 查看订单
  30. </button>
  31. <!-- TODO 非繁人:拼团接入 -->
  32. <!-- <button class="check-btn ss-reset-button" v-if="payResult === 'success' && state.tradeOrder.type === 3"
  33. @tap="sheep.$router.redirect('/pages/activity/groupon/order')">
  34. 我的拼团
  35. </button> -->
  36. </view>
  37. <!-- TODO 非繁人:订阅 -->
  38. <!-- #ifdef MP -->
  39. <!-- <view class="subscribe-box ss-flex ss-m-t-44">
  40. <image class="subscribe-img" :src="sheep.$url.static('/static/images/cargo.png')" />
  41. <view class="subscribe-title ss-m-r-48 ss-m-l-16">获取实时发货信息与订单状态</view>
  42. <view class="subscribe-start" @tap="subscribeMessage">立即订阅</view>
  43. </view> -->
  44. <!-- #endif -->
  45. </view>
  46. </template>
  47. <script setup>
  48. import {
  49. ref,
  50. onMounted,
  51. reactive,
  52. computed,
  53. watchEffect
  54. } from 'vue';
  55. import axios from 'axios';
  56. import 'https://wx.gtimg.com/pay_h5/goldplan/js/jgoldplan-1.0.0.js';
  57. import {
  58. onLoad,
  59. onHide,
  60. onShow
  61. } from '@dcloudio/uni-app';
  62. import {
  63. isEmpty
  64. } from 'lodash';
  65. import sheep from '@/sheep';
  66. import PayOrderApi from '@/sheep/api/pay/order';
  67. import {
  68. fen2yuan
  69. } from '../../sheep/hooks/useGoods';
  70. import OrderApi from '@/sheep/api/trade/order';
  71. import {
  72. showWalletModal,
  73. colseWalletModal
  74. } from '@/sheep/hooks/useModal';
  75. const order = ref({});
  76. const result = ref({
  77. });
  78. const url = ref('https://payapp.weixin.qq.com');
  79. // 获取地址栏字段
  80. const getQueryVal = () => {
  81. const queryStr = window.location.href.split("?")[1]; // 地址栏字符串
  82. const strArr = queryStr.split('&');
  83. if (strArr.length) {
  84. strArr.forEach((val) => {
  85. const subStrArr = val.split('=');
  86. result.value[subStrArr[0]] = subStrArr[1];
  87. });
  88. }
  89. };
  90. // 用于展示商家小票
  91. const showCustomPage = () => {
  92. console.log("showCustomPage")
  93. const customData = JSON.stringify({
  94. action: 'onIframeReady',
  95. displayStyle: 'SHOW_CUSTOM_PAGE',
  96. // height: 900
  97. });
  98. parent.postMessage(customData, url.value);
  99. };
  100. const state = reactive({
  101. id: 0, // 支付单号
  102. orderType: 'goods', // 订单类型
  103. result: 'unpaid', // 支付状态
  104. orderInfo: {}, // 支付订单信息
  105. tradeOrder: {}, // 商品订单信息,只有在 orderType 为 goods 才会请求。目的:【我的拼团】按钮的展示
  106. counter: 0, // 获取结果次数
  107. });
  108. // 支付结果 result => payResult
  109. const payResult = computed(() => {
  110. if (state.result === 'unpaid') {
  111. return 'waiting';
  112. }
  113. if (state.result === 'paid') {
  114. return 'success';
  115. }
  116. if (state.result === 'failed') {
  117. return 'failed';
  118. }
  119. if (state.result === 'closed') {
  120. return 'closed';
  121. }
  122. });
  123. // watchEffect(()=>{
  124. // if(payResult.value == 'success'){
  125. // showWalletModal({points: state.orderInfo.jf,socialStatus: state.orderInfo.sj})
  126. // }
  127. // })
  128. // 获得订单信息
  129. async function getOrderInfo(payOrderNo) {
  130. state.counter++;
  131. // 1. 加载订单信息
  132. const {
  133. data,
  134. code
  135. } = await PayOrderApi.getFuYouPayOrderByStatus(payOrderNo);
  136. if (code === 0) {
  137. state.orderInfo = data;
  138. if (!state.orderInfo || state.orderInfo.status === 30) {
  139. // 支付关闭
  140. state.result = 'closed';
  141. return;
  142. }
  143. if (state.orderInfo.status !== 0) {
  144. // 非待支付,可能是已支付,可能是已退款
  145. state.result = 'paid';
  146. // #ifdef MP
  147. subscribeMessage();
  148. // #endif
  149. // 特殊:获得商品订单信息
  150. // if (state.orderType === 'goods') {
  151. // const {
  152. // data,
  153. // code
  154. // } = await PayOrderApi.getByStatus2(state.orderInfo.merchantOrderId);
  155. // if (code === 0) {
  156. // state.tradeOrder = data;
  157. // }
  158. // }
  159. return;
  160. }
  161. }
  162. // 2.1 情况三一:未支付,且轮询次数小于三次,则继续轮询
  163. if (state.counter < 3 && state.result === 'unpaid') {
  164. setTimeout(() => {
  165. getOrderInfo(payOrderNo);
  166. }, 1500);
  167. }
  168. // 2.2 情况二:超过三次检测才判断为支付失败
  169. if (state.counter >= 3) {
  170. state.result = 'failed';
  171. }
  172. }
  173. // onShow(() => {
  174. // if (isEmpty(state.orderInfo)) {
  175. // return;
  176. // }
  177. // getOrderInfo(state.id);
  178. // });
  179. // onHide(() => {
  180. // state.result = 'unpaid';
  181. // state.counter = 0;
  182. // });
  183. // 组件挂载后执行
  184. onMounted(async () => {
  185. await showCustomPage();
  186. await getQueryVal();
  187. await getOrderInfo(result.value.out_trade_no);
  188. // if (!result.value.out_trade_no) {
  189. // parent.alert('没有订单号,请联系管理员!');
  190. // } else {
  191. // queryOrderInfo();
  192. // }
  193. });
  194. // 返回首页
  195. const goBack = () => {
  196. const mchData = {
  197. action: 'jumpOut',
  198. jumpOutUrl: `${location.origin}/#/pages/index/index?points=${state.orderInfo.jf}&socialStatus=${state.orderInfo.sj}`
  199. };
  200. console.log(mchData.jumpOutUrl)
  201. const postData = JSON.stringify(mchData);
  202. parent.postMessage(postData, url.value);
  203. };
  204. // 跳转到订单
  205. const goOrderList = () => {
  206. console.log(state.orderInfo)
  207. const mchData = {
  208. action: 'jumpOut',
  209. jumpOutUrl: `${location.origin}/#/pages/order/list?type=2&points=${state.orderInfo.jf}&socialStatus=${state.orderInfo.sj}`
  210. };
  211. console.log(mchData.jumpOutUrl)
  212. const postData = JSON.stringify(mchData);
  213. parent.postMessage(postData, url.value);
  214. };
  215. </script>
  216. <style lang="scss" scoped>
  217. @keyframes rotation {
  218. 0% {
  219. transform: rotate(0deg);
  220. }
  221. 100% {
  222. transform: rotate(360deg);
  223. }
  224. }
  225. .score-img {
  226. width: 36rpx;
  227. height: 36rpx;
  228. margin: 0 4rpx;
  229. }
  230. .pay-result-box {
  231. padding: 60rpx 0;
  232. .pay-waiting {
  233. margin-top: 20rpx;
  234. width: 60rpx;
  235. height: 60rpx;
  236. border: 10rpx solid rgb(233, 231, 231);
  237. border-bottom-color: rgb(204, 204, 204);
  238. border-radius: 50%;
  239. display: inline-block;
  240. // -webkit-animation: rotation 1s linear infinite;
  241. animation: rotation 1s linear infinite;
  242. }
  243. .pay-img {
  244. width: 130rpx;
  245. height: 130rpx;
  246. }
  247. .tip-text {
  248. font-size: 30rpx;
  249. font-weight: bold;
  250. color: #333333;
  251. }
  252. .pay-total-num {
  253. font-size: 36rpx;
  254. font-weight: 500;
  255. color: #333333;
  256. font-family: OPPOSANS;
  257. }
  258. .btn-box {
  259. width: 100%;
  260. .back-btn {
  261. width: 190rpx;
  262. height: 70rpx;
  263. font-size: 28rpx;
  264. border: 2rpx solid #dfdfdf;
  265. border-radius: 35rpx;
  266. font-weight: 400;
  267. color: #595959;
  268. }
  269. .check-btn {
  270. width: 190rpx;
  271. height: 70rpx;
  272. font-size: 28rpx;
  273. border: 2rpx solid #dfdfdf;
  274. border-radius: 35rpx;
  275. font-weight: 400;
  276. color: #595959;
  277. margin-left: 32rpx;
  278. }
  279. }
  280. .subscribe-box {
  281. .subscribe-img {
  282. width: 44rpx;
  283. height: 44rpx;
  284. }
  285. .subscribe-title {
  286. font-weight: 500;
  287. font-size: 32rpx;
  288. line-height: 36rpx;
  289. color: #434343;
  290. }
  291. .subscribe-start {
  292. color: var(--ui-BG-Main);
  293. font-weight: 700;
  294. font-size: 32rpx;
  295. line-height: 36rpx;
  296. }
  297. }
  298. }
  299. </style>