result.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <!-- 支付结果页面 -->
  2. <template>
  3. <s-layout title="支付结果" :bgStyle="{ color: '#FFF' }">
  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. {{state.id}}
  19. <!-- 操作区 -->
  20. <view class="btn-box ss-flex ss-row-center ss-m-t-50">
  21. <button class="back-btn ss-reset-button" @tap="sheep.$router.go('/pages/index/index')">
  22. 返回首页
  23. </button>
  24. <button class="check-btn ss-reset-button" v-if="payResult === 'failed'" @tap="
  25. sheep.$router.redirect('/pages/pay/index', { id: state.id, orderType: state.orderType })
  26. ">
  27. 重新支付
  28. </button>
  29. <button class="check-btn ss-reset-button" v-if="payResult === 'success'" @tap="onOrder">
  30. 查看订单
  31. </button>
  32. <!-- TODO 非繁人:拼团接入 -->
  33. <button class="check-btn ss-reset-button" v-if="payResult === 'success' && state.tradeOrder.type === 3"
  34. @tap="sheep.$router.redirect('/pages/activity/groupon/order')">
  35. 我的拼团
  36. </button>
  37. </view>
  38. <!-- TODO 非繁人:订阅 -->
  39. <!-- #ifdef MP -->
  40. <view class="subscribe-box ss-flex ss-m-t-44">
  41. <image class="subscribe-img" :src="sheep.$url.static('/static/images/cargo.png')" />
  42. <view class="subscribe-title ss-m-r-48 ss-m-l-16">获取实时发货信息与订单状态</view>
  43. <view class="subscribe-start" @tap="subscribeMessage">立即订阅</view>
  44. </view>
  45. <!-- #endif -->
  46. </view>
  47. </s-layout>
  48. </template>
  49. <script setup>
  50. import {
  51. onLoad,
  52. onHide,
  53. onShow
  54. } from '@dcloudio/uni-app';
  55. import {
  56. reactive,
  57. computed,
  58. watchEffect
  59. } from 'vue';
  60. import {
  61. isEmpty
  62. } from 'lodash';
  63. import sheep from '@/sheep';
  64. import PayOrderApi from '@/sheep/api/pay/order';
  65. import {
  66. fen2yuan
  67. } from '../../sheep/hooks/useGoods';
  68. import OrderApi from '@/sheep/api/trade/order';
  69. import {
  70. showWalletModal,
  71. colseWalletModal
  72. } from '@/sheep/hooks/useModal';
  73. const state = reactive({
  74. id: 0, // 支付单号
  75. orderType: 'goods', // 订单类型
  76. result: 'unpaid', // 支付状态
  77. orderInfo: {}, // 支付订单信息
  78. tradeOrder: {}, // 商品订单信息,只有在 orderType 为 goods 才会请求。目的:【我的拼团】按钮的展示
  79. counter: 0, // 获取结果次数
  80. });
  81. // 支付结果 result => payResult
  82. const payResult = computed(() => {
  83. if (state.result === 'unpaid') {
  84. return 'waiting';
  85. }
  86. if (state.result === 'paid') {
  87. return 'success';
  88. }
  89. if (state.result === 'failed') {
  90. return 'failed';
  91. }
  92. if (state.result === 'closed') {
  93. return 'closed';
  94. }
  95. });
  96. watchEffect(()=>{
  97. if(payResult.value == 'success'){
  98. showWalletModal({points: state.orderInfo.jf,socialStatus: state.orderInfo.sj})
  99. }
  100. })
  101. // 获得订单信息
  102. async function getOrderInfo(id) {
  103. state.counter++;
  104. // 1. 加载订单信息
  105. // 测试
  106. // await PayOrderApi.getByStatus3(id);
  107. const {
  108. data,
  109. code
  110. } = await PayOrderApi.getByStatus2(id);
  111. if (code === 0) {
  112. state.orderInfo = data;
  113. if (!state.orderInfo || state.orderInfo.status === 30) {
  114. // 支付关闭
  115. state.result = 'closed';
  116. return;
  117. }
  118. if (state.orderInfo.status !== 0) {
  119. // // 非待支付,可能是已支付,可能是已退款
  120. state.result = 'paid';
  121. // // #ifdef MP
  122. subscribeMessage();
  123. // // #endif
  124. // // 特殊:获得商品订单信息
  125. // if (state.orderType === 'goods') {
  126. // const {
  127. // data,
  128. // code
  129. // } = await PayOrderApi.getByStatus2(state.orderInfo.merchantOrderId);
  130. // if (code === 0) {
  131. // state.tradeOrder = data;
  132. // }
  133. // }
  134. return;
  135. }
  136. }
  137. // 2.1 情况三一:未支付,且轮询次数小于三次,则继续轮询
  138. if (state.counter < 3 && state.result === 'unpaid') {
  139. setTimeout(() => {
  140. getOrderInfo(id);
  141. }, 1500);
  142. }
  143. // 2.2 情况二:超过三次检测才判断为支付失败
  144. if (state.counter >= 3) {
  145. state.result = 'failed';
  146. }
  147. }
  148. function onOrder() {
  149. // TODO 非繁人:待测试
  150. if (state.orderType === 'recharge') {
  151. sheep.$router.redirect('/pages/pay/recharge-log');
  152. } else {
  153. sheep.$router.redirect('/pages/order/list');
  154. }
  155. }
  156. // TODO 非繁人:待测试
  157. // #ifdef MP
  158. function subscribeMessage() {
  159. let event = ['order_dispatched'];
  160. if (state.tradeOrder.type === 3) {
  161. event.push('groupon_finish');
  162. event.push('groupon_fail');
  163. }
  164. sheep.$platform.useProvider('wechat').subscribeMessage(event);
  165. }
  166. // #endif
  167. onLoad(async (options) => {
  168. console.log(options.id)
  169. // 支付订单号
  170. if (options.id) {
  171. state.id = options.id;
  172. }
  173. // 订单类型
  174. if (options.orderType) {
  175. state.orderType = options.orderType;
  176. }
  177. // 支付结果传值过来是失败,则直接显示失败界面
  178. // if (options.payState === 'fail') {
  179. // state.result = 'failed';
  180. // } else {
  181. // 轮询三次检测订单支付结果
  182. await getOrderInfo(state.id);
  183. // }
  184. });
  185. onShow(() => {
  186. if (isEmpty(state.orderInfo)) {
  187. return;
  188. }
  189. getOrderInfo(state.id);
  190. });
  191. onHide(() => {
  192. state.result = 'unpaid';
  193. state.counter = 0;
  194. });
  195. </script>
  196. <style lang="scss" scoped>
  197. @keyframes rotation {
  198. 0% {
  199. transform: rotate(0deg);
  200. }
  201. 100% {
  202. transform: rotate(360deg);
  203. }
  204. }
  205. .score-img {
  206. width: 36rpx;
  207. height: 36rpx;
  208. margin: 0 4rpx;
  209. }
  210. .pay-result-box {
  211. padding: 60rpx 0;
  212. .pay-waiting {
  213. margin-top: 20rpx;
  214. width: 60rpx;
  215. height: 60rpx;
  216. border: 10rpx solid rgb(233, 231, 231);
  217. border-bottom-color: rgb(204, 204, 204);
  218. border-radius: 50%;
  219. display: inline-block;
  220. // -webkit-animation: rotation 1s linear infinite;
  221. animation: rotation 1s linear infinite;
  222. }
  223. .pay-img {
  224. width: 130rpx;
  225. height: 130rpx;
  226. }
  227. .tip-text {
  228. font-size: 30rpx;
  229. font-weight: bold;
  230. color: #333333;
  231. }
  232. .pay-total-num {
  233. font-size: 36rpx;
  234. font-weight: 500;
  235. color: #333333;
  236. font-family: OPPOSANS;
  237. }
  238. .btn-box {
  239. width: 100%;
  240. .back-btn {
  241. width: 190rpx;
  242. height: 70rpx;
  243. font-size: 28rpx;
  244. border: 2rpx solid #dfdfdf;
  245. border-radius: 35rpx;
  246. font-weight: 400;
  247. color: #595959;
  248. }
  249. .check-btn {
  250. width: 190rpx;
  251. height: 70rpx;
  252. font-size: 28rpx;
  253. border: 2rpx solid #dfdfdf;
  254. border-radius: 35rpx;
  255. font-weight: 400;
  256. color: #595959;
  257. margin-left: 32rpx;
  258. }
  259. }
  260. .subscribe-box {
  261. .subscribe-img {
  262. width: 44rpx;
  263. height: 44rpx;
  264. }
  265. .subscribe-title {
  266. font-weight: 500;
  267. font-size: 32rpx;
  268. line-height: 36rpx;
  269. color: #434343;
  270. }
  271. .subscribe-start {
  272. color: var(--ui-BG-Main);
  273. font-weight: 700;
  274. font-size: 32rpx;
  275. line-height: 36rpx;
  276. }
  277. }
  278. }
  279. </style>