result.vue 8.5 KB

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