result.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  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. const {
  106. data,
  107. code
  108. } = await PayOrderApi.getByStatus2(id);
  109. if (code === 0) {
  110. state.orderInfo = data;
  111. if (!state.orderInfo || state.orderInfo.status === 30) {
  112. // 支付关闭
  113. state.result = 'closed';
  114. return;
  115. }
  116. if (state.orderInfo.status !== 0) {
  117. // 非待支付,可能是已支付,可能是已退款
  118. state.result = 'paid';
  119. // #ifdef MP
  120. subscribeMessage();
  121. // #endif
  122. // 特殊:获得商品订单信息
  123. if (state.orderType === 'goods') {
  124. const {
  125. data,
  126. code
  127. } = await PayOrderApi.getByStatus2(state.orderInfo.merchantOrderId);
  128. if (code === 0) {
  129. state.tradeOrder = data;
  130. }
  131. }
  132. return;
  133. }
  134. }
  135. // 2.1 情况三一:未支付,且轮询次数小于三次,则继续轮询
  136. if (state.counter < 3 && state.result === 'unpaid') {
  137. setTimeout(() => {
  138. getOrderInfo(id);
  139. }, 1500);
  140. }
  141. // 2.2 情况二:超过三次检测才判断为支付失败
  142. if (state.counter >= 3) {
  143. state.result = 'failed';
  144. }
  145. }
  146. function onOrder() {
  147. // TODO 非繁人:待测试
  148. if (state.orderType === 'recharge') {
  149. sheep.$router.redirect('/pages/pay/recharge-log');
  150. } else {
  151. sheep.$router.redirect('/pages/order/list');
  152. }
  153. }
  154. // TODO 非繁人:待测试
  155. // #ifdef MP
  156. function subscribeMessage() {
  157. let event = ['order_dispatched'];
  158. if (state.tradeOrder.type === 3) {
  159. event.push('groupon_finish');
  160. event.push('groupon_fail');
  161. }
  162. sheep.$platform.useProvider('wechat').subscribeMessage(event);
  163. }
  164. // #endif
  165. onLoad(async (options) => {
  166. console.log(options.id)
  167. // 支付订单号
  168. if (options.id) {
  169. state.id = options.id;
  170. }
  171. // 订单类型
  172. if (options.orderType) {
  173. state.orderType = options.orderType;
  174. }
  175. // 支付结果传值过来是失败,则直接显示失败界面
  176. // if (options.payState === 'fail') {
  177. // state.result = 'failed';
  178. // } else {
  179. // 轮询三次检测订单支付结果
  180. await getOrderInfo(state.id);
  181. // }
  182. });
  183. onShow(() => {
  184. if (isEmpty(state.orderInfo)) {
  185. return;
  186. }
  187. getOrderInfo(state.id);
  188. });
  189. onHide(() => {
  190. state.result = 'unpaid';
  191. state.counter = 0;
  192. });
  193. </script>
  194. <style lang="scss" scoped>
  195. @keyframes rotation {
  196. 0% {
  197. transform: rotate(0deg);
  198. }
  199. 100% {
  200. transform: rotate(360deg);
  201. }
  202. }
  203. .score-img {
  204. width: 36rpx;
  205. height: 36rpx;
  206. margin: 0 4rpx;
  207. }
  208. .pay-result-box {
  209. padding: 60rpx 0;
  210. .pay-waiting {
  211. margin-top: 20rpx;
  212. width: 60rpx;
  213. height: 60rpx;
  214. border: 10rpx solid rgb(233, 231, 231);
  215. border-bottom-color: rgb(204, 204, 204);
  216. border-radius: 50%;
  217. display: inline-block;
  218. // -webkit-animation: rotation 1s linear infinite;
  219. animation: rotation 1s linear infinite;
  220. }
  221. .pay-img {
  222. width: 130rpx;
  223. height: 130rpx;
  224. }
  225. .tip-text {
  226. font-size: 30rpx;
  227. font-weight: bold;
  228. color: #333333;
  229. }
  230. .pay-total-num {
  231. font-size: 36rpx;
  232. font-weight: 500;
  233. color: #333333;
  234. font-family: OPPOSANS;
  235. }
  236. .btn-box {
  237. width: 100%;
  238. .back-btn {
  239. width: 190rpx;
  240. height: 70rpx;
  241. font-size: 28rpx;
  242. border: 2rpx solid #dfdfdf;
  243. border-radius: 35rpx;
  244. font-weight: 400;
  245. color: #595959;
  246. }
  247. .check-btn {
  248. width: 190rpx;
  249. height: 70rpx;
  250. font-size: 28rpx;
  251. border: 2rpx solid #dfdfdf;
  252. border-radius: 35rpx;
  253. font-weight: 400;
  254. color: #595959;
  255. margin-left: 32rpx;
  256. }
  257. }
  258. .subscribe-box {
  259. .subscribe-img {
  260. width: 44rpx;
  261. height: 44rpx;
  262. }
  263. .subscribe-title {
  264. font-weight: 500;
  265. font-size: 32rpx;
  266. line-height: 36rpx;
  267. color: #434343;
  268. }
  269. .subscribe-start {
  270. color: var(--ui-BG-Main);
  271. font-weight: 700;
  272. font-size: 32rpx;
  273. line-height: 36rpx;
  274. }
  275. }
  276. }
  277. </style>