detail.vue 18 KB

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