result.vue 7.8 KB

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