result.vue 7.7 KB

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