detail.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. <!-- 订单详情 -->
  2. <template>
  3. <s-layout title="订单详情" class="index-wrap" navbar="inner">
  4. <!-- 订单状态 TODO -->
  5. <view
  6. class="state-box ss-flex-col ss-col-center ss-row-right"
  7. :style="[
  8. {
  9. marginTop: '-' + Number(statusBarHeight + 88) + 'rpx',
  10. paddingTop: Number(statusBarHeight + 88) + 'rpx',
  11. },
  12. ]"
  13. >
  14. <view class="ss-flex ss-m-t-32 ss-m-b-20">
  15. <image
  16. v-if="
  17. state.orderInfo.status_code == 'unpaid' ||
  18. state.orderInfo.status === 10 || // 待发货
  19. state.orderInfo.status_code == 'nocomment'
  20. "
  21. class="state-img"
  22. :src="sheep.$url.static('/static/img/shop/order/order_loading.png')"
  23. >
  24. </image>
  25. <image
  26. v-if="
  27. state.orderInfo.status_code == 'completed' ||
  28. state.orderInfo.status_code == 'refund_agree'
  29. "
  30. class="state-img"
  31. :src="sheep.$url.static('/static/img/shop/order/order_success.png')"
  32. >
  33. </image>
  34. <image
  35. v-if="state.orderInfo.status_code == 'cancel' || state.orderInfo.status_code == 'closed'"
  36. class="state-img"
  37. :src="sheep.$url.static('/static/img/shop/order/order_close.png')"
  38. >
  39. </image>
  40. <image
  41. v-if="state.orderInfo.status_code == 'noget'"
  42. class="state-img"
  43. :src="sheep.$url.static('/static/img/shop/order/order_express.png')"
  44. >
  45. </image>
  46. <view class="ss-font-30">{{ formatOrderStatus(state.orderInfo) }}</view>
  47. </view>
  48. <view class="ss-font-26 ss-m-x-20 ss-m-b-70">{{
  49. formatOrderStatusDescription(state.orderInfo)
  50. }}</view>
  51. </view>
  52. <!-- 收货地址 -->
  53. <view class="order-address-box" v-if="state.orderInfo.receiverAreaId > 0">
  54. <view class="ss-flex ss-col-center">
  55. <text class="address-username">
  56. {{ state.orderInfo.receiverName }}
  57. </text>
  58. <text class="address-phone">{{ state.orderInfo.receiverMobile }}</text>
  59. </view>
  60. <view class="address-detail">
  61. {{ state.orderInfo.receiverAreaName }} {{ state.orderInfo.receiverDetailAddress }}
  62. </view>
  63. </view>
  64. <view
  65. class="detail-goods"
  66. :style="[{ marginTop: state.orderInfo.receiverAreaId > 0 ? '0' : '-40rpx' }]"
  67. >
  68. <!-- 订单信息 TODO 非繁人: -->
  69. <view class="order-list" v-for="item in state.orderInfo.items" :key="item.goods_id">
  70. <view class="order-card">
  71. <s-goods-item
  72. @tap="onGoodsDetail(item.spuId)"
  73. :img="item.picUrl"
  74. :title="item.spuName"
  75. :skuText="item.properties.map((property) => property.valueName).join(' ')"
  76. :price="item.price"
  77. :num="item.count"
  78. >
  79. <template #tool>
  80. <view class="ss-flex">
  81. <button
  82. class="ss-reset-button apply-btn"
  83. v-if="[10, 20, 30].includes(state.orderInfo.status) && item.afterSaleStatus === 0"
  84. @tap.stop="
  85. sheep.$router.go('/pages/order/aftersale/apply', {
  86. orderId: state.orderInfo.id,
  87. itemId: item.id,
  88. })
  89. "
  90. >
  91. 申请售后
  92. </button>
  93. <button
  94. class="ss-reset-button apply-btn"
  95. v-if="item.afterSaleStatus === 10"
  96. @tap.stop="
  97. sheep.$router.go('/pages/order/aftersale/detail', {
  98. id: item.afterSaleId,
  99. })
  100. "
  101. >
  102. 退款中
  103. </button>
  104. <button
  105. class="ss-reset-button apply-btn"
  106. v-if="item.afterSaleStatus === 20"
  107. @tap.stop="
  108. sheep.$router.go('/pages/order/aftersale/detail', {
  109. id: item.afterSaleId,
  110. })
  111. "
  112. >
  113. 退款成功
  114. </button>
  115. </view>
  116. </template>
  117. <template #priceSuffix>
  118. <button class="ss-reset-button tag-btn" v-if="item.status_text">
  119. {{ item.status_text }}
  120. </button>
  121. </template>
  122. </s-goods-item>
  123. </view>
  124. </view>
  125. </view>
  126. <!-- 订单信息 -->
  127. <view class="notice-box">
  128. <view class="notice-box__content">
  129. <view class="notice-item--center">
  130. <view class="ss-flex ss-flex-1">
  131. <text class="title">订单编号:</text>
  132. <text class="detail">{{ state.orderInfo.no }}</text>
  133. </view>
  134. <button class="ss-reset-button copy-btn" @tap="onCopy">复制</button>
  135. </view>
  136. <view class="notice-item">
  137. <text class="title">下单时间:</text>
  138. <text class="detail">
  139. {{ sheep.$helper.timeFormat(state.orderInfo.createTime, 'yyyy-mm-dd hh:MM:ss') }}
  140. </text>
  141. </view>
  142. <view class="notice-item" v-if="state.orderInfo.payTime">
  143. <text class="title">支付时间:</text>
  144. <text class="detail">
  145. {{ sheep.$helper.timeFormat(state.orderInfo.payTime, 'yyyy-mm-dd hh:MM:ss') }}
  146. </text>
  147. </view>
  148. <view class="notice-item">
  149. <text class="title">支付方式:</text>
  150. <text class="detail">{{ state.orderInfo.payChannelName || '-' }}</text>
  151. </view>
  152. </view>
  153. </view>
  154. <!-- 价格信息 -->
  155. <view class="order-price-box">
  156. <view class="notice-item ss-flex ss-row-between">
  157. <text class="title">商品总额</text>
  158. <view class="ss-flex">
  159. <text class="detail">¥{{ fen2yuan(state.orderInfo.totalPrice) }}</text>
  160. </view>
  161. </view>
  162. <view class="notice-item ss-flex ss-row-between">
  163. <text class="title">运费</text>
  164. <text class="detail">¥{{ fen2yuan(state.orderInfo.deliveryPrice) }}</text>
  165. </view>
  166. <!-- TODO 非繁人:优惠劵抵扣、积分抵扣 -->
  167. <view class="notice-item ss-flex ss-row-between" v-if="state.orderInfo.discountPrice > 0">
  168. <text class="title">优惠金额</text>
  169. <text class="detail">¥{{ fen2yuan(state.orderInfo.discountPrice) }}</text>
  170. </view>
  171. <view class="notice-item all-rpice-item ss-flex ss-m-t-20">
  172. <text class="title">{{ state.orderInfo.payStatus ? '已付款' : '需付款' }}</text>
  173. <text class="detail all-price">¥{{ fen2yuan(state.orderInfo.payPrice) }}</text>
  174. </view>
  175. <view
  176. class="notice-item all-rpice-item ss-flex ss-m-t-20"
  177. v-if="state.orderInfo.refundPrice > 0"
  178. >
  179. <text class="title">已退款</text>
  180. <text class="detail all-price">¥{{ fen2yuan(state.orderInfo.refundPrice) }}</text>
  181. </view>
  182. </view>
  183. <!-- 底部按钮 -->
  184. <!-- TODO: 查看物流、等待成团、评价完后返回页面没刷新页面 -->
  185. <su-fixed bottom placeholder bg="bg-white" v-if="state.orderInfo.buttons?.length">
  186. <view class="footer-box ss-flex ss-col-center ss-row-right">
  187. <button
  188. class="ss-reset-button cancel-btn"
  189. v-if="state.orderInfo.buttons?.includes('cancel')"
  190. @tap="onCancel(state.orderInfo.id)"
  191. >
  192. 取消订单
  193. </button>
  194. <button
  195. class="ss-reset-button pay-btn ui-BG-Main-Gradient"
  196. v-if="state.orderInfo.buttons?.includes('pay')"
  197. @tap="onPay(state.orderInfo.payOrderId)"
  198. >
  199. 继续支付
  200. </button>
  201. <!-- TODO 非繁人:拼团接入 -->
  202. <button
  203. class="ss-reset-button cancel-btn"
  204. v-if="state.orderInfo.buttons?.includes('combination')"
  205. @tap="
  206. sheep.$router.go('/pages/activity/groupon/detail', {
  207. id: state.orderInfo.ext.groupon_id,
  208. })
  209. "
  210. >
  211. 拼团详情
  212. </button>
  213. <button
  214. class="ss-reset-button cancel-btn"
  215. v-if="state.orderInfo.buttons?.includes('express')"
  216. @tap="onExpress(state.orderInfo.id)"
  217. >
  218. 查看物流
  219. </button>
  220. <button
  221. class="ss-reset-button cancel-btn"
  222. v-if="state.orderInfo.buttons?.includes('confirm')"
  223. @tap="onConfirm(state.orderInfo.id)"
  224. >
  225. 确认收货
  226. </button>
  227. <button
  228. class="ss-reset-button cancel-btn"
  229. v-if="state.orderInfo.buttons?.includes('comment')"
  230. @tap="onComment(state.orderInfo.id)"
  231. >
  232. 评价
  233. </button>
  234. </view>
  235. </su-fixed>
  236. </s-layout>
  237. </template>
  238. <script setup>
  239. import sheep from '@/sheep';
  240. import { onLoad } from '@dcloudio/uni-app';
  241. import { reactive } from 'vue';
  242. import { isEmpty } from 'lodash';
  243. import {
  244. fen2yuan,
  245. formatOrderStatus,
  246. formatOrderStatusDescription,
  247. handleOrderButtons,
  248. } from '@/sheep/hooks/useGoods';
  249. import OrderApi from '@/sheep/api/trade/order';
  250. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  251. const headerBg = sheep.$url.css('/static/img/shop/order/order_bg.png');
  252. const state = reactive({
  253. orderInfo: {},
  254. merchantTradeNo: '', // 商户订单号
  255. comeinType: '', // 进入订单详情的来源类型
  256. });
  257. // 复制
  258. const onCopy = () => {
  259. sheep.$helper.copyText(state.orderInfo.sn);
  260. };
  261. // 去支付
  262. function onPay(payOrderId) {
  263. sheep.$router.go('/pages/pay/index', {
  264. id: payOrderId,
  265. });
  266. }
  267. // 查看商品
  268. function onGoodsDetail(id) {
  269. // console.log(id)
  270. sheep.$router.go('/pages/goods/index', {
  271. id,
  272. });
  273. }
  274. // 取消订单
  275. async function onCancel(orderId) {
  276. uni.showModal({
  277. title: '提示',
  278. content: '确定要取消订单吗?',
  279. success: async function (res) {
  280. if (!res.confirm) {
  281. return;
  282. }
  283. const { code } = await OrderApi.cancelOrder(orderId);
  284. if (code === 0) {
  285. await getOrderDetail(orderId);
  286. }
  287. },
  288. });
  289. }
  290. // 查看物流
  291. async function onExpress(id) {
  292. sheep.$router.go('/pages/order/express/log', {
  293. id,
  294. });
  295. }
  296. // 确认收货 TODO 非繁人:待测试
  297. async function onConfirm(orderId, ignore = false) {
  298. // 需开启确认收货组件
  299. // todo: 非繁人:待接入微信
  300. // 1.怎么检测是否开启了发货组件功能?如果没有开启的话就不能在这里return出去
  301. // 2.如果开启了走mpConfirm方法,需要在App.vue的show方法中拿到确认收货结果
  302. let isOpenBusinessView = true;
  303. if (
  304. sheep.$platform.name === 'WechatMiniProgram' &&
  305. !isEmpty(state.orderInfo.wechat_extra_data) &&
  306. isOpenBusinessView &&
  307. !ignore
  308. ) {
  309. mpConfirm(orderId);
  310. return;
  311. }
  312. // 正常的确认收货流程
  313. const { code } = await OrderApi.receiveOrder(orderId);
  314. if (code === 0) {
  315. await getOrderDetail(orderId);
  316. }
  317. }
  318. // #ifdef MP-WEIXIN
  319. // 小程序确认收货组件
  320. function mpConfirm(orderId) {
  321. if (!wx.openBusinessView) {
  322. sheep.$helper.toast(`请升级微信版本`);
  323. return;
  324. }
  325. wx.openBusinessView({
  326. businessType: 'weappOrderConfirm',
  327. extraData: {
  328. merchant_trade_no: state.orderInfo.wechat_extra_data.merchant_trade_no,
  329. transaction_id: state.orderInfo.wechat_extra_data.transaction_id,
  330. },
  331. success(response) {
  332. console.log('success:', response);
  333. if (response.errMsg === 'openBusinessView:ok') {
  334. if (response.extraData.status === 'success') {
  335. onConfirm(orderId, true);
  336. }
  337. }
  338. },
  339. fail(error) {
  340. console.log('error:', error);
  341. },
  342. complete(result) {
  343. console.log('result:', result);
  344. },
  345. });
  346. }
  347. // #endif
  348. // 评价
  349. function onComment(id) {
  350. sheep.$router.go('/pages/goods/comment/add', {
  351. id
  352. });
  353. }
  354. async function getOrderDetail(id) {
  355. // 对详情数据进行适配
  356. let res;
  357. if (state.comeinType === 'wechat') {
  358. // TODO 非繁人:微信场景下
  359. res = await OrderApi.getOrder(id, {
  360. merchant_trade_no: state.merchantTradeNo,
  361. });
  362. } else {
  363. res = await OrderApi.getOrder(id);
  364. }
  365. if (res.code === 0) {
  366. state.orderInfo = res.data;
  367. handleOrderButtons(state.orderInfo);
  368. } else {
  369. sheep.$router.back();
  370. }
  371. }
  372. onLoad(async (options) => {
  373. let id = 0;
  374. if (options.id) {
  375. id = options.id;
  376. }
  377. // TODO 非繁人:下面两个变量,后续接入
  378. state.comeinType = options.comein_type;
  379. if (state.comeinType === 'wechat') {
  380. state.merchantTradeNo = options.merchant_trade_no;
  381. }
  382. await getOrderDetail(id);
  383. });
  384. </script>
  385. <style lang="scss" scoped>
  386. .score-img {
  387. width: 36rpx;
  388. height: 36rpx;
  389. margin: 0 4rpx;
  390. }
  391. .apply-btn {
  392. width: 140rpx;
  393. height: 50rpx;
  394. border-radius: 25rpx;
  395. font-size: 24rpx;
  396. border: 2rpx solid #dcdcdc;
  397. line-height: normal;
  398. margin-left: 16rpx;
  399. }
  400. .state-box {
  401. color: rgba(#fff, 0.9);
  402. width: 100%;
  403. background: v-bind(headerBg) no-repeat,
  404. linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  405. background-size: 750rpx 100%;
  406. box-sizing: border-box;
  407. .state-img {
  408. width: 60rpx;
  409. height: 60rpx;
  410. margin-right: 20rpx;
  411. }
  412. }
  413. .order-address-box {
  414. background-color: #fff;
  415. border-radius: 10rpx;
  416. margin: -50rpx 20rpx 16rpx 20rpx;
  417. padding: 44rpx 34rpx 42rpx 20rpx;
  418. font-size: 30rpx;
  419. box-sizing: border-box;
  420. font-weight: 500;
  421. color: rgba(51, 51, 51, 1);
  422. .address-username {
  423. margin-right: 20rpx;
  424. }
  425. .address-detail {
  426. font-size: 26rpx;
  427. font-weight: 500;
  428. color: rgba(153, 153, 153, 1);
  429. margin-top: 20rpx;
  430. }
  431. }
  432. .detail-goods {
  433. border-radius: 10rpx;
  434. margin: 0 20rpx 20rpx 20rpx;
  435. .order-list {
  436. margin-bottom: 20rpx;
  437. background-color: #fff;
  438. .order-card {
  439. padding: 20rpx 0;
  440. .order-sku {
  441. font-size: 24rpx;
  442. font-weight: 400;
  443. color: rgba(153, 153, 153, 1);
  444. width: 450rpx;
  445. margin-bottom: 20rpx;
  446. .order-num {
  447. margin-right: 10rpx;
  448. }
  449. }
  450. .tag-btn {
  451. margin-left: 16rpx;
  452. font-size: 24rpx;
  453. height: 36rpx;
  454. color: var(--ui-BG-Main);
  455. border: 2rpx solid var(--ui-BG-Main);
  456. border-radius: 14rpx;
  457. padding: 0 4rpx;
  458. }
  459. }
  460. }
  461. }
  462. // 订单信息。
  463. .notice-box {
  464. background: #fff;
  465. border-radius: 10rpx;
  466. margin: 0 20rpx 20rpx 20rpx;
  467. .notice-box__head {
  468. font-size: 30rpx;
  469. font-weight: 500;
  470. color: rgba(51, 51, 51, 1);
  471. line-height: 80rpx;
  472. border-bottom: 1rpx solid #dfdfdf;
  473. padding: 0 25rpx;
  474. }
  475. .notice-box__content {
  476. padding: 20rpx;
  477. .self-pickup-box {
  478. width: 100%;
  479. .self-pickup--img {
  480. width: 200rpx;
  481. height: 200rpx;
  482. margin: 40rpx 0;
  483. }
  484. }
  485. }
  486. .notice-item,
  487. .notice-item--center {
  488. display: flex;
  489. align-items: center;
  490. line-height: normal;
  491. margin-bottom: 24rpx;
  492. .title {
  493. font-size: 28rpx;
  494. color: #999;
  495. }
  496. .detail {
  497. font-size: 28rpx;
  498. color: #333;
  499. flex: 1;
  500. }
  501. }
  502. }
  503. .copy-btn {
  504. width: 100rpx;
  505. line-height: 50rpx;
  506. border-radius: 25rpx;
  507. padding: 0;
  508. background: rgba(238, 238, 238, 1);
  509. font-size: 22rpx;
  510. font-weight: 400;
  511. color: rgba(51, 51, 51, 1);
  512. }
  513. // 订单价格信息
  514. .order-price-box {
  515. background-color: #fff;
  516. border-radius: 10rpx;
  517. padding: 20rpx;
  518. margin: 0 20rpx 20rpx 20rpx;
  519. .notice-item {
  520. line-height: 70rpx;
  521. .title {
  522. font-size: 28rpx;
  523. color: #999;
  524. }
  525. .detail {
  526. font-size: 28rpx;
  527. color: #333;
  528. font-family: OPPOSANS;
  529. }
  530. }
  531. .all-rpice-item {
  532. justify-content: flex-end;
  533. align-items: center;
  534. .title {
  535. font-size: 26rpx;
  536. font-weight: 500;
  537. color: #333333;
  538. line-height: normal;
  539. }
  540. .all-price {
  541. font-size: 26rpx;
  542. font-family: OPPOSANS;
  543. line-height: normal;
  544. color: $red;
  545. }
  546. }
  547. }
  548. // 底部
  549. .footer-box {
  550. height: 100rpx;
  551. width: 100%;
  552. box-sizing: border-box;
  553. border-radius: 10rpx;
  554. padding-right: 20rpx;
  555. .cancel-btn {
  556. width: 160rpx;
  557. height: 60rpx;
  558. background: #eeeeee;
  559. border-radius: 30rpx;
  560. margin-right: 20rpx;
  561. font-size: 26rpx;
  562. font-weight: 400;
  563. color: #333333;
  564. }
  565. .pay-btn {
  566. width: 160rpx;
  567. height: 60rpx;
  568. font-size: 26rpx;
  569. border-radius: 30rpx;
  570. font-weight: 500;
  571. color: #fff;
  572. }
  573. }
  574. </style>