detail.vue 16 KB

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