result.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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="sheep.$router.go('/pages/index/index')">
  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="onOrder">
  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. const queryStr = ref('');
  80. // 获取地址栏字段
  81. const getQueryVal = () => {
  82. console.log(window.location)
  83. queryStr.value = window.location.href.split("?")[1]; // 地址栏字符串
  84. const strArr = queryStr.value.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. // watchEffect(()=>{
  126. // if(payResult.value == 'success'){
  127. // showWalletModal({points: state.orderInfo.jf,socialStatus: state.orderInfo.sj})
  128. // }
  129. // })
  130. // 获得订单信息
  131. async function getOrderInfo(payOrderNo) {
  132. state.counter++;
  133. // 1. 加载订单信息
  134. // 测试
  135. // await PayOrderApi.getByStatus3(id);
  136. const {
  137. data,
  138. code
  139. } = await PayOrderApi.getFuYouPayOrderByStatus(payOrderNo);
  140. if (code === 0) {
  141. state.orderInfo = data;
  142. if (!state.orderInfo || state.orderInfo.status === 30) {
  143. // 支付关闭
  144. state.result = 'closed';
  145. return;
  146. }
  147. if (state.orderInfo.status !== 0) {
  148. // 非待支付,可能是已支付,可能是已退款
  149. state.result = 'paid';
  150. // #ifdef MP
  151. subscribeMessage();
  152. // #endif
  153. // 特殊:获得商品订单信息
  154. // if (state.orderType === 'goods') {
  155. // const {
  156. // data,
  157. // code
  158. // } = await PayOrderApi.getByStatus2(state.orderInfo.merchantOrderId);
  159. // if (code === 0) {
  160. // state.tradeOrder = data;
  161. // }
  162. // }
  163. return;
  164. }
  165. }
  166. // 2.1 情况三一:未支付,且轮询次数小于三次,则继续轮询
  167. if (state.counter < 3 && state.result === 'unpaid') {
  168. setTimeout(() => {
  169. getOrderInfo(payOrderNo);
  170. }, 1500);
  171. }
  172. // 2.2 情况二:超过三次检测才判断为支付失败
  173. if (state.counter >= 3) {
  174. state.result = 'failed';
  175. }
  176. }
  177. // onShow(() => {
  178. // if (isEmpty(state.orderInfo)) {
  179. // return;
  180. // }
  181. // getOrderInfo(state.id);
  182. // });
  183. // onHide(() => {
  184. // state.result = 'unpaid';
  185. // state.counter = 0;
  186. // });
  187. // 组件挂载后执行
  188. onMounted(async () => {
  189. await getQueryVal();
  190. await showCustomPage();
  191. await getOrderInfo(result.out_trade_no);
  192. // if (!result.value.out_trade_no) {
  193. // parent.alert('没有订单号,请联系管理员!');
  194. // } else {
  195. // queryOrderInfo();
  196. // }
  197. });
  198. // 返回首页
  199. const goBack = () => {
  200. const mchData = {
  201. action: 'jumpOut',
  202. jumpOutUrl: `${location.origin}/#/`
  203. };
  204. const postData = JSON.stringify(mchData);
  205. parent.postMessage(postData, url.value);
  206. };
  207. // 跳转到订单
  208. const goOrderList = () => {
  209. const mchData = {
  210. action: 'jumpOut',
  211. jumpOutUrl: `${location.origin}/#/pages/order/list?type=2`
  212. };
  213. const postData = JSON.stringify(mchData);
  214. parent.postMessage(postData, url.value);
  215. };
  216. </script>
  217. <style lang="scss" scoped>
  218. @keyframes rotation {
  219. 0% {
  220. transform: rotate(0deg);
  221. }
  222. 100% {
  223. transform: rotate(360deg);
  224. }
  225. }
  226. .score-img {
  227. width: 36rpx;
  228. height: 36rpx;
  229. margin: 0 4rpx;
  230. }
  231. .pay-result-box {
  232. padding: 60rpx 0;
  233. .pay-waiting {
  234. margin-top: 20rpx;
  235. width: 60rpx;
  236. height: 60rpx;
  237. border: 10rpx solid rgb(233, 231, 231);
  238. border-bottom-color: rgb(204, 204, 204);
  239. border-radius: 50%;
  240. display: inline-block;
  241. // -webkit-animation: rotation 1s linear infinite;
  242. animation: rotation 1s linear infinite;
  243. }
  244. .pay-img {
  245. width: 130rpx;
  246. height: 130rpx;
  247. }
  248. .tip-text {
  249. font-size: 30rpx;
  250. font-weight: bold;
  251. color: #333333;
  252. }
  253. .pay-total-num {
  254. font-size: 36rpx;
  255. font-weight: 500;
  256. color: #333333;
  257. font-family: OPPOSANS;
  258. }
  259. .btn-box {
  260. width: 100%;
  261. .back-btn {
  262. width: 190rpx;
  263. height: 70rpx;
  264. font-size: 28rpx;
  265. border: 2rpx solid #dfdfdf;
  266. border-radius: 35rpx;
  267. font-weight: 400;
  268. color: #595959;
  269. }
  270. .check-btn {
  271. width: 190rpx;
  272. height: 70rpx;
  273. font-size: 28rpx;
  274. border: 2rpx solid #dfdfdf;
  275. border-radius: 35rpx;
  276. font-weight: 400;
  277. color: #595959;
  278. margin-left: 32rpx;
  279. }
  280. }
  281. .subscribe-box {
  282. .subscribe-img {
  283. width: 44rpx;
  284. height: 44rpx;
  285. }
  286. .subscribe-title {
  287. font-weight: 500;
  288. font-size: 32rpx;
  289. line-height: 36rpx;
  290. color: #434343;
  291. }
  292. .subscribe-start {
  293. color: var(--ui-BG-Main);
  294. font-weight: 700;
  295. font-size: 32rpx;
  296. line-height: 36rpx;
  297. }
  298. }
  299. }
  300. </style>