result.vue 7.2 KB

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