resultYuan.vue 7.8 KB

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