result.vue 7.4 KB

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