detail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683
  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/images/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/images/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/images/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/images/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. {{ points2point(state.orderInfo.payIntegral) }}
  140. </text>
  141. </view>
  142. <view class="notice-item">
  143. <text class="title">用户留言:</text>
  144. <text class="detail">
  145. {{ state.orderInfo.userRemark || '无' }}
  146. </text>
  147. </view>
  148. <view class="notice-item">
  149. <text class="title">下单时间:</text>
  150. <text class="detail">
  151. {{ sheep.$helper.timeFormat(state.orderInfo.createTime, 'yyyy-mm-dd hh:MM:ss') }}
  152. </text>
  153. </view>
  154. <view class="notice-item" v-if="state.orderInfo.payTime">
  155. <text class="title">支付时间:</text>
  156. <text class="detail">
  157. {{ sheep.$helper.timeFormat(state.orderInfo.payTime, 'yyyy-mm-dd hh:MM:ss') }}
  158. </text>
  159. </view>
  160. <view class="notice-item">
  161. <text class="title">支付方式:</text>
  162. <text class="detail">{{ state.orderInfo.payChannelName || '-' }}</text>
  163. </view>
  164. </view>
  165. </view>
  166. <!-- 价格信息 -->
  167. <view class="order-price-box">
  168. <view class="notice-item ss-flex ss-row-between">
  169. <text class="title">商品总额</text>
  170. <view class="ss-flex">
  171. <text class="detail">¥{{ fen2yuan(state.orderInfo.totalPrice) }}</text>
  172. </view>
  173. </view>
  174. <view class="notice-item ss-flex ss-row-between">
  175. <text class="title">运费</text>
  176. <text class="detail">¥{{ fen2yuan(state.orderInfo.deliveryPrice) }}</text>
  177. </view>
  178. <!-- TODO 非繁人:优惠劵抵扣、积分抵扣 -->
  179. <view class="notice-item ss-flex ss-row-between" v-if="state.orderInfo.discountPrice > 0">
  180. <text class="title">优惠金额</text>
  181. <text class="detail">¥{{ fen2yuan(state.orderInfo.discountPrice) }}</text>
  182. </view>
  183. <view class="notice-item all-rpice-item ss-flex ss-m-t-20">
  184. <text class="title">{{ state.orderInfo.payStatus ? '已付款' : '需付款' }}</text>
  185. <text class="detail all-price">¥{{ fen2yuan(state.orderInfo.payPrice) }}</text>
  186. </view>
  187. <view
  188. class="notice-item all-rpice-item ss-flex ss-m-t-20"
  189. v-if="state.orderInfo.refundPrice > 0"
  190. >
  191. <text class="title">已退款</text>
  192. <text class="detail all-price">¥{{ fen2yuan(state.orderInfo.refundPrice) }}</text>
  193. </view>
  194. </view>
  195. <!-- 底部按钮 -->
  196. <!-- TODO: 查看物流、等待成团、评价完后返回页面没刷新页面 -->
  197. <su-fixed bottom placeholder bg="bg-white" v-if="state.orderInfo.buttons?.length">
  198. <view class="footer-box ss-flex ss-col-center ss-row-right">
  199. <button
  200. class="ss-reset-button cancel-btn"
  201. v-if="state.orderInfo.buttons?.includes('cancel')"
  202. @tap="onCancel(state.orderInfo.id)"
  203. >
  204. 取消订单
  205. </button>
  206. <button
  207. class="ss-reset-button pay-btn ui-BG-Main-Gradient"
  208. v-if="state.orderInfo.buttons?.includes('pay')"
  209. @tap="onPay(state.orderInfo.id)"
  210. >
  211. 继续支付
  212. </button>
  213. <!-- TODO 非繁人:拼团接入 -->
  214. <button
  215. class="ss-reset-button cancel-btn"
  216. v-if="state.orderInfo.buttons?.includes('combination')"
  217. @tap="
  218. sheep.$router.go('/pages/activity/groupon/detail', {
  219. id: state.orderInfo.ext.groupon_id,
  220. })
  221. "
  222. >
  223. 拼团详情
  224. </button>
  225. <button
  226. class="ss-reset-button cancel-btn"
  227. v-if="state.orderInfo.buttons?.includes('express')"
  228. @tap="onExpress(state.orderInfo.id)"
  229. >
  230. 查看物流
  231. </button>
  232. <button
  233. class="ss-reset-button cancel-btn"
  234. v-if="state.orderInfo.buttons?.includes('confirm')"
  235. @tap="onConfirm(state.orderInfo.id)"
  236. >
  237. 确认收货
  238. </button>
  239. <button
  240. class="ss-reset-button cancel-btn"
  241. v-if="state.orderInfo.buttons?.includes('comment')"
  242. @tap="onComment(state.orderInfo.id)"
  243. >
  244. 评价
  245. </button>
  246. </view>
  247. </su-fixed>
  248. </s-layout>
  249. </template>
  250. <script setup>
  251. import sheep from '@/sheep';
  252. import { onLoad } from '@dcloudio/uni-app';
  253. import { reactive,computed,watch } from 'vue';
  254. import { isEmpty } from 'lodash';
  255. import {
  256. fen2yuan,
  257. formatOrderStatus,
  258. formatOrderStatusDescription,
  259. handleOrderButtons,
  260. points2point
  261. } from '@/sheep/hooks/useGoods';
  262. import OrderApi from '@/sheep/api/trade/order';
  263. import { showAuthModal } from '@/sheep/hooks/useModal';
  264. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  265. const headerBg = sheep.$url.css('/static/images/order_bg.png');
  266. const state = reactive({
  267. orderInfo: {},
  268. merchantTradeNo: '', // 商户订单号
  269. comeinType: '', // 进入订单详情的来源类型
  270. });
  271. // 复制
  272. const onCopy = () => {
  273. sheep.$helper.copyText(state.orderInfo.no);
  274. };
  275. // 去支付
  276. function onPay(id) {
  277. sheep.$router.go('/pages/pay/index', {
  278. id: id,
  279. openType:2
  280. });
  281. }
  282. // 查看商品
  283. function onGoodsDetail(id) {
  284. // console.log(id)
  285. sheep.$router.go('/pages/goods/index', {
  286. id,
  287. });
  288. }
  289. // 取消订单
  290. async function onCancel(orderId) {
  291. uni.showModal({
  292. title: '提示',
  293. content: '确定要取消订单吗?',
  294. success: async function (res) {
  295. if (!res.confirm) {
  296. return;
  297. }
  298. const { code } = await OrderApi.cancelOrder(orderId);
  299. if (code === 0) {
  300. await getOrderDetail(orderId);
  301. }
  302. },
  303. });
  304. }
  305. // 查看物流
  306. async function onExpress(id) {
  307. sheep.$router.go('/pages/order/express/log', {
  308. id,
  309. });
  310. }
  311. // 确认收货 TODO 非繁人:待测试
  312. async function onConfirm(orderId, ignore = false) {
  313. // 需开启确认收货组件
  314. // todo: 非繁人:待接入微信
  315. // 1.怎么检测是否开启了发货组件功能?如果没有开启的话就不能在这里return出去
  316. // 2.如果开启了走mpConfirm方法,需要在App.vue的show方法中拿到确认收货结果
  317. let isOpenBusinessView = true;
  318. uni.showModal({
  319. title: '提示',
  320. content: '确认收货?',
  321. success: async function(res) {
  322. if (res.confirm) {
  323. if (
  324. sheep.$platform.name === 'WechatMiniProgram' &&
  325. !isEmpty(state.orderInfo.wechat_extra_data) &&
  326. isOpenBusinessView &&
  327. !ignore
  328. ) {
  329. mpConfirm(orderId);
  330. return;
  331. }
  332. // 正常的确认收货流程
  333. const { code } = await OrderApi.receiveOrder(orderId);
  334. if (code === 0) {
  335. await getOrderDetail(orderId);
  336. }
  337. }
  338. },
  339. });
  340. }
  341. // #ifdef MP-WEIXIN
  342. // 小程序确认收货组件
  343. function mpConfirm(orderId) {
  344. if (!wx.openBusinessView) {
  345. sheep.$helper.toast(`请升级微信版本`);
  346. return;
  347. }
  348. wx.openBusinessView({
  349. businessType: 'weappOrderConfirm',
  350. extraData: {
  351. merchant_trade_no: state.orderInfo.wechat_extra_data.merchant_trade_no,
  352. transaction_id: state.orderInfo.wechat_extra_data.transaction_id,
  353. },
  354. success(response) {
  355. console.log('success:', response);
  356. if (response.errMsg === 'openBusinessView:ok') {
  357. if (response.extraData.status === 'success') {
  358. onConfirm(orderId, true);
  359. }
  360. }
  361. },
  362. fail(error) {
  363. console.log('error:', error);
  364. },
  365. complete(result) {
  366. console.log('result:', result);
  367. },
  368. });
  369. }
  370. // #endif
  371. // 评价
  372. function onComment(id) {
  373. sheep.$router.go('/pages/goods/comment/add', {
  374. id
  375. });
  376. }
  377. async function getOrderDetail(id) {
  378. // 对详情数据进行适配
  379. let res;
  380. if (state.comeinType === 'wechat') {
  381. // TODO 非繁人:微信场景下
  382. res = await OrderApi.getOrder(id, {
  383. merchant_trade_no: state.merchantTradeNo,
  384. });
  385. } else {
  386. res = await OrderApi.getOrder(id);
  387. }
  388. if (res.code === 0) {
  389. state.orderInfo = res.data;
  390. handleOrderButtons(state.orderInfo);
  391. } else {
  392. sheep.$router.back();
  393. }
  394. }
  395. const isLogin = computed(() => sheep.$store('user').isLogin);
  396. // 监听到在这个页面登陆,并刷新页面
  397. watch(
  398. () => isLogin.value,
  399. (newVal) => {
  400. if(newVal){
  401. window.location.reload()
  402. }
  403. },
  404. {
  405. deep: true, // 深度监听
  406. },
  407. );
  408. onLoad(async (options) => {
  409. const userInfo = sheep.$store('user').userInfo;
  410. //如果没登陆就进来则有可能是在微信消息推送进来的 提示登陆
  411. if (!isLogin.value) {
  412. showAuthModal();
  413. sheep.$helper.toast("您尚未登录,请登录:" + options.username + "后再试", 3000);
  414. } else {
  415. console.log(userInfo)
  416. // 如果
  417. if(options.username){
  418. // 如果登陆了但不是该订单的账号,提示有问题
  419. if (options.username != userInfo.username) {
  420. sheep.$helper.toast("您当前登录的账号是" + userInfo.username + ",请切换到" + options.username + "后再试",
  421. 3000);
  422. }
  423. }
  424. }
  425. let id = 0;
  426. if (options.id) {
  427. id = options.id;
  428. }
  429. // TODO 非繁人:下面两个变量,后续接入
  430. state.comeinType = options.comein_type;
  431. if (state.comeinType === 'wechat') {
  432. state.merchantTradeNo = options.merchant_trade_no;
  433. }
  434. await getOrderDetail(id);
  435. });
  436. </script>
  437. <style lang="scss" scoped>
  438. .score-img {
  439. width: 36rpx;
  440. height: 36rpx;
  441. margin: 0 4rpx;
  442. }
  443. .apply-btn {
  444. width: 140rpx;
  445. height: 50rpx;
  446. border-radius: 25rpx;
  447. font-size: 24rpx;
  448. border: 2rpx solid #dcdcdc;
  449. line-height: normal;
  450. margin-left: 16rpx;
  451. }
  452. .state-box {
  453. color: rgba(#fff, 0.9);
  454. width: 100%;
  455. background: v-bind(headerBg) no-repeat,
  456. linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  457. background-size: 750rpx 100%;
  458. box-sizing: border-box;
  459. .state-img {
  460. width: 60rpx;
  461. height: 60rpx;
  462. margin-right: 20rpx;
  463. }
  464. }
  465. .order-address-box {
  466. background-color: #fff;
  467. border-radius: 10rpx;
  468. margin: -50rpx 20rpx 16rpx 20rpx;
  469. padding: 44rpx 34rpx 42rpx 20rpx;
  470. font-size: 30rpx;
  471. box-sizing: border-box;
  472. font-weight: 500;
  473. color: rgba(51, 51, 51, 1);
  474. .address-username {
  475. margin-right: 20rpx;
  476. }
  477. .address-detail {
  478. font-size: 26rpx;
  479. font-weight: 500;
  480. color: rgba(153, 153, 153, 1);
  481. margin-top: 20rpx;
  482. }
  483. }
  484. .detail-goods {
  485. border-radius: 10rpx;
  486. margin: 0 20rpx 20rpx 20rpx;
  487. .order-list {
  488. margin-bottom: 20rpx;
  489. background-color: #fff;
  490. .order-card {
  491. padding: 20rpx 0;
  492. .order-sku {
  493. font-size: 24rpx;
  494. font-weight: 400;
  495. color: rgba(153, 153, 153, 1);
  496. width: 450rpx;
  497. margin-bottom: 20rpx;
  498. .order-num {
  499. margin-right: 10rpx;
  500. }
  501. }
  502. .tag-btn {
  503. margin-left: 16rpx;
  504. font-size: 24rpx;
  505. height: 36rpx;
  506. color: var(--ui-BG-Main);
  507. border: 2rpx solid var(--ui-BG-Main);
  508. border-radius: 14rpx;
  509. padding: 0 4rpx;
  510. }
  511. }
  512. }
  513. }
  514. // 订单信息。
  515. .notice-box {
  516. background: #fff;
  517. border-radius: 10rpx;
  518. margin: 0 20rpx 20rpx 20rpx;
  519. .notice-box__head {
  520. font-size: 30rpx;
  521. font-weight: 500;
  522. color: rgba(51, 51, 51, 1);
  523. line-height: 80rpx;
  524. border-bottom: 1rpx solid #dfdfdf;
  525. padding: 0 25rpx;
  526. }
  527. .notice-box__content {
  528. padding: 20rpx;
  529. .self-pickup-box {
  530. width: 100%;
  531. .self-pickup--img {
  532. width: 200rpx;
  533. height: 200rpx;
  534. margin: 40rpx 0;
  535. }
  536. }
  537. }
  538. .notice-item,
  539. .notice-item--center {
  540. display: flex;
  541. align-items: center;
  542. line-height: normal;
  543. margin-bottom: 24rpx;
  544. .title {
  545. font-size: 28rpx;
  546. color: #999;
  547. }
  548. .detail {
  549. font-size: 28rpx;
  550. color: #333;
  551. flex: 1;
  552. }
  553. }
  554. }
  555. .copy-btn {
  556. width: 100rpx;
  557. line-height: 50rpx;
  558. border-radius: 25rpx;
  559. padding: 0;
  560. background: rgba(238, 238, 238, 1);
  561. font-size: 22rpx;
  562. font-weight: 400;
  563. color: rgba(51, 51, 51, 1);
  564. }
  565. // 订单价格信息
  566. .order-price-box {
  567. background-color: #fff;
  568. border-radius: 10rpx;
  569. padding: 20rpx;
  570. margin: 0 20rpx 20rpx 20rpx;
  571. .notice-item {
  572. line-height: 70rpx;
  573. .title {
  574. font-size: 28rpx;
  575. color: #999;
  576. }
  577. .detail {
  578. font-size: 28rpx;
  579. color: #333;
  580. font-family: OPPOSANS;
  581. }
  582. }
  583. .all-rpice-item {
  584. justify-content: flex-end;
  585. align-items: center;
  586. .title {
  587. font-size: 26rpx;
  588. font-weight: 500;
  589. color: #333333;
  590. line-height: normal;
  591. }
  592. .all-price {
  593. font-size: 26rpx;
  594. font-family: OPPOSANS;
  595. line-height: normal;
  596. color: $red;
  597. }
  598. }
  599. }
  600. // 底部
  601. .footer-box {
  602. height: 100rpx;
  603. width: 100%;
  604. box-sizing: border-box;
  605. border-radius: 10rpx;
  606. padding-right: 20rpx;
  607. .cancel-btn {
  608. width: 160rpx;
  609. height: 60rpx;
  610. background: #eeeeee;
  611. border-radius: 30rpx;
  612. margin-right: 20rpx;
  613. font-size: 26rpx;
  614. font-weight: 400;
  615. color: #333333;
  616. }
  617. .pay-btn {
  618. width: 160rpx;
  619. height: 60rpx;
  620. font-size: 26rpx;
  621. border-radius: 30rpx;
  622. font-weight: 500;
  623. color: #fff;
  624. }
  625. }
  626. </style>