detail.vue 16 KB

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