detail.vue 14 KB

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