orderInformation.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. <template>
  2. <view class="page">
  3. <view class="top" v-if="orderInformation.type != 'group_package'">
  4. <view class="title">
  5. {{ orderTitle }}
  6. </view>
  7. <view class="prompt">
  8. {{ orderDetail }}
  9. </view>
  10. </view>
  11. <view class="packaging" v-if="orderInformation.type == 'group_package'">
  12. <view class="packaging-top">
  13. <view class="">
  14. {{
  15. orderInformation.goods[0].type_text +
  16. "&nbsp;" +
  17. "|" +
  18. "&nbsp" +
  19. orderInformation.containerBase.transport_type_name
  20. }}
  21. </view>
  22. <view style="color: #f83224"> {{ orderInformation.status_text }} </view>
  23. </view>
  24. <view class="packaging-center">
  25. <view class="packaging-left">
  26. <view class="left-top"> 东莞仓库 </view>
  27. <view class="left-bottom"> 始发地 </view>
  28. </view>
  29. <image class="jiantou" src="../../static/mine/339.png" mode=""></image>
  30. <view class="packaging-left">
  31. <view class="left-top">
  32. {{ orderInformation.containerBase.country_name }}
  33. </view>
  34. <view class="left-bottom"> 目的地 </view>
  35. </view>
  36. </view>
  37. <view class="packaging-time">
  38. <view class="time">
  39. <text>开始时间:</text>
  40. <text>{{
  41. orderInformation.containerBase.begin_date + "&emsp;"
  42. }}</text>
  43. </view>
  44. <view class="time">
  45. <text>截止时间:</text>
  46. <text>{{ orderInformation.containerBase.end_date }}</text>
  47. </view>
  48. </view>
  49. </view>
  50. <view class="photo" v-if="orderInformation.status == 'unpaid'">
  51. <view class="_weight">
  52. <text>称重重量</text>
  53. <text>{{ orderInformation.actual_weight }}kg</text>
  54. </view>
  55. <view class="_weight">
  56. <text>称重图片</text>
  57. <!-- <view class="_image"> </view> -->
  58. <image
  59. :src="orderInformation.weight_images"
  60. mode="scaleToFill"
  61. class="_image"
  62. />
  63. </view>
  64. <view class="photo-bottom">
  65. <text class="_text-1">需付款</text>
  66. <view class="price">
  67. <text style="font-size: 20rpx">¥</text>
  68. <text>{{ orderInformation.estimated_price.split(".")[0] }}</text
  69. >.
  70. <text style="font-size: 20rpx">{{
  71. orderInformation.estimated_price.split(".")[1]
  72. }}</text>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="address">
  77. <view class="name-phone">
  78. <view class="send"> 寄 </view>
  79. <view class="name"> {{ orderInformation.from_name }} </view>
  80. <view class="phone"> {{ orderInformation.from_mobile }} </view>
  81. </view>
  82. <view class="address-detail">
  83. {{ orderInformation.from_full_address }}
  84. </view>
  85. <view class="name-phone">
  86. <view class="send"> 收 </view>
  87. <view class="name"> {{ orderInformation.to_name }} </view>
  88. <view class="phone"> {{ orderInformation.to_mobile }} </view>
  89. </view>
  90. <view class="address-detail _bottom">
  91. {{ orderInformation.to_full_address }}
  92. </view>
  93. <image
  94. style="height: 4rpx; margin-bottom: 40rpx"
  95. src="../../static/mine/338.png"
  96. mode=""
  97. ></image>
  98. <view class="_label-list" v-for="item in orderInformation.goods">
  99. <view class="information">
  100. <text class="_label">物品信息:</text>
  101. <text class="_value">{{ item.name }}</text>
  102. </view>
  103. <view class="information">
  104. <text class="_label">件数:</text>
  105. <text class="_value">{{ item.number }}</text>
  106. </view>
  107. <view class="information">
  108. <text class="_label">重量:</text>
  109. <text class="_value">{{ item.actual_weight }}kg</text>
  110. </view>
  111. <view class="information">
  112. <text class="_label">类型:</text>
  113. <text class="_value">{{ item.type_text }}</text>
  114. </view>
  115. <view style="display: flex">
  116. <text class="_label">跨境物流:</text>
  117. <view class="_value">
  118. <text
  119. >{{ orderInformation.transportType.name_cn + "&nbsp;" }}
  120. </text>
  121. <text> | {{ orderInformation.containerBase.name }}</text>
  122. </view>
  123. </view>
  124. </view>
  125. </view>
  126. <view class="num-information">
  127. <view class="order" style="">
  128. <text class="_label-1">订单编号</text>
  129. <view class="num">
  130. <text>{{ orderInformation.order_no }}</text
  131. >{{ "&nbsp;" + "|" + "&nbsp;"
  132. }}<text @click="cope(orderInformation.order_no)">复制</text>
  133. </view>
  134. </view>
  135. <view class="order">
  136. <text class="_label-1">下单时间</text>
  137. <view class="num">{{ orderInformation.created_at }} </view>
  138. </view>
  139. <view
  140. class="order"
  141. v-if="
  142. orderInformation.status == 'overseas_undelivered' ||
  143. orderInformation.status == 'overseas_delivered' ||
  144. orderInformation.status == 'domestic_delivered' ||
  145. orderInformation.status == 'finished' ||
  146. orderInformation.status == 'domestic_undelivered'
  147. "
  148. >
  149. <text class="_label-1">付款时间</text>
  150. <view class="num"> {{ orderInformation.paid_at }} </view>
  151. </view>
  152. <view
  153. class="order"
  154. v-if="
  155. (orderInformation.status == 'overseas_delivered' &&
  156. orderInformation.status != 'domestic_delivered') ||
  157. orderInformation.status == 'finished'
  158. "
  159. >
  160. <text class="_label-1">发货时间</text>
  161. <view class="num"> 2023-11-24 22:31 </view>
  162. </view>
  163. <view class="order" v-if="orderInformation.status == 'finished'">
  164. <text class="_label-1">签收时间</text>
  165. <view class="num"> 2023-11-24 22:31 </view>
  166. </view>
  167. </view>
  168. <view class="pay">
  169. <text>{{
  170. orderInformation.status == "group_unpaid" ? "待付" : "已付"
  171. }}</text>
  172. <text style="color: #f83224; font-weight: 600">{{
  173. orderInformation.estimated_price
  174. }}</text>
  175. </view>
  176. <view
  177. class="footer"
  178. v-if="
  179. orderInformation.status == 'domestic_delivered' ||
  180. orderInformation.status == 'overseas_delivered' ||
  181. orderInformation.status == 'finished'
  182. "
  183. >
  184. <button
  185. class="btn-1"
  186. @click="toLogistics"
  187. v-if="orderInformation.status == 'finished'"
  188. >
  189. 删除
  190. </button>
  191. <button class="btn-1" @click="toLogistics">查看物流</button>
  192. <button
  193. class="btn-1"
  194. @click="fillInformation"
  195. v-if="orderInformation.status == 'domestic_undelivered'"
  196. >
  197. 填写物流信息
  198. </button>
  199. <button
  200. class="btn-2"
  201. @click="toPay"
  202. v-if="orderInformation.status == 'unpaid'"
  203. >
  204. 立即付款
  205. </button>
  206. </view>
  207. <view
  208. class="footer"
  209. v-else-if="
  210. orderInformation.status == 'domestic_undelivered' ||
  211. orderInformation.status == 'unpaid' ||
  212. orderInformation.status == 'group_unpaid'
  213. "
  214. >
  215. <button
  216. class="btn-1"
  217. @click="fillInformation"
  218. v-if="
  219. orderInformation.type == 'mall_order' &&
  220. orderInformation.status == 'domestic_undelivered'
  221. "
  222. >
  223. 填写物流信息
  224. </button>
  225. <button
  226. class="btn-2"
  227. @click="toSending"
  228. v-if="
  229. (orderInformation.type == 'group_package' ||
  230. orderInformation.type == 'express_order') &&
  231. orderInformation.status == 'domestic_undelivered'
  232. "
  233. >
  234. 去寄件
  235. </button>
  236. <button
  237. class="btn-2"
  238. @click="toPay"
  239. v-if="
  240. orderInformation.status == 'unpaid' ||
  241. orderInformation.status == 'group_unpaid'
  242. "
  243. >
  244. 立即付款
  245. </button></view
  246. >
  247. <Fill :show="show" @close="close" />
  248. </view>
  249. </template>
  250. <script>
  251. import Fill from "./component/fill.vue";
  252. export default {
  253. components: {
  254. Fill,
  255. },
  256. data() {
  257. return {
  258. orderStauts: 0,
  259. orderTitle: "",
  260. orderDetail: "",
  261. packageId: "",
  262. orderInformation: {},
  263. show: false,
  264. };
  265. },
  266. computed: {},
  267. onLoad(options) {
  268. this.orderStauts = options.orderStatus;
  269. this.getDetail();
  270. },
  271. created() {},
  272. methods: {
  273. cope(str) {
  274. uni.setClipboardData({
  275. data: str,
  276. success() {
  277. uni.showToast({
  278. title: "复制成功",
  279. icon: "none",
  280. });
  281. },
  282. });
  283. },
  284. //去寄件
  285. toSending() {
  286. uni.navigateTo({
  287. url: "/pageD/sending/sending?orderId=" + this.orderInformation.id,
  288. });
  289. },
  290. setStatus(num) {
  291. this.orderStauts = num;
  292. },
  293. //查看物流进度
  294. toLogistics() {
  295. uni.navigateTo({
  296. url: "/pageD/logisticsProgress/logisticsProgress",
  297. });
  298. },
  299. //填写物流信息
  300. fillInformation() {
  301. this.show = true;
  302. },
  303. //关闭弹窗
  304. close(value) {
  305. this.show = false;
  306. if (value.expressCode) {
  307. uni.$u.http
  308. .post(`/api/express-order/delivery/${this.orderInformation.id}`, {
  309. domestic_logistics_company_code: value.expressCode,
  310. domestic_logistics_no: value.expressNum,
  311. })
  312. .then((res) => {
  313. this.getDetail();
  314. uni.showToast({
  315. title: "已保存",
  316. });
  317. });
  318. }
  319. },
  320. //去支付
  321. toPay() {
  322. uni.navigateTo({
  323. url: `/pageD/paymentOrder/paymentOrder?money=${this.orderInformation.estimated_price}&weight=${this.orderInformation.goods[0].actual_weight}&packageType=${this.orderInformation.goods[0].type_text}&num=${this.orderInformation.goods[0].number}&orderid=${this.orderInformation.id}&type=${this.orderInformation.type}`,
  324. });
  325. },
  326. getDetail() {
  327. uni.$u.http.get(`/api/express-order/${this.orderStauts}`).then((res) => {
  328. this.orderInformation = res;
  329. if (this.orderInformation.status == "domestic_delivered") {
  330. //设置顶部标题栏颜色
  331. uni.setNavigationBarColor({
  332. frontColor: "#000000",
  333. backgroundColor: "#f4f4f4",
  334. });
  335. this.orderDetail = "商品已寄往平台,正在运输中";
  336. this.orderTitle = this.orderInformation.status_text;
  337. } else if (this.orderInformation.status == "unpaid") {
  338. //设置顶部标题栏颜色
  339. uni.setNavigationBarColor({
  340. frontColor: "#000000",
  341. backgroundColor: "#f4f4f4",
  342. });
  343. this.orderDetail = "商品已打包称重,等待用户付款";
  344. this.orderTitle = this.orderInformation.status_text;
  345. } else if (this.orderInformation.status == "overseas_undelivered") {
  346. //设置顶部标题栏颜色
  347. uni.setNavigationBarColor({
  348. frontColor: "#000000",
  349. backgroundColor: "#f4f4f4",
  350. });
  351. this.orderDetail = "等待平台发货";
  352. this.orderTitle = this.orderInformation.status_text;
  353. } else if (this.orderInformation.status == "overseas_delivered") {
  354. //设置顶部标题栏颜色
  355. uni.setNavigationBarColor({
  356. frontColor: "#000000",
  357. backgroundColor: "#f4f4f4",
  358. });
  359. this.orderDetail = "商品已发出,很快将发货至您的手中";
  360. this.orderTitle = this.orderInformation.status_text;
  361. } else if (this.orderStauts == 4) {
  362. //设置顶部标题栏颜色
  363. uni.setNavigationBarColor({
  364. frontColor: "#000000",
  365. backgroundColor: "#ffffff",
  366. });
  367. uni.setNavigationBarTitle({
  368. title: "拼包详情",
  369. });
  370. } else if (
  371. this.orderInformation.status == "finished" ||
  372. this.orderInformation.status == "overseas_received"
  373. ) {
  374. //设置顶部标题栏颜色
  375. uni.setNavigationBarColor({
  376. frontColor: "#000000",
  377. backgroundColor: "#f4f4f4",
  378. });
  379. this.orderDetail = "订单签收,交易已完成";
  380. this.orderTitle = this.orderInformation.status_text;
  381. } else if (this.orderInformation.status == "domestic_received") {
  382. //设置顶部标题栏颜色
  383. uni.setNavigationBarColor({
  384. frontColor: "#000000",
  385. backgroundColor: "#f4f4f4",
  386. });
  387. this.orderDetail = "等待中转称重发出";
  388. this.orderTitle = this.orderInformation.status_text;
  389. } else if (this.orderInformation.status == "closed") {
  390. //设置顶部标题栏颜色
  391. uni.setNavigationBarColor({
  392. frontColor: "#000000",
  393. backgroundColor: "#f4f4f4",
  394. });
  395. this.orderDetail = "订单关闭";
  396. this.orderTitle = this.orderInformation.status_text;
  397. } else if (this.orderInformation.status == "refunded") {
  398. //设置顶部标题栏颜色
  399. uni.setNavigationBarColor({
  400. frontColor: "#000000",
  401. backgroundColor: "#f4f4f4",
  402. });
  403. this.orderDetail = "订单已退款";
  404. this.orderTitle = this.orderInformation.status_text;
  405. } else if (this.orderInformation.status == "refunding") {
  406. //设置顶部标题栏颜色
  407. uni.setNavigationBarColor({
  408. frontColor: "#000000",
  409. backgroundColor: "#f4f4f4",
  410. });
  411. this.orderDetail = "订单正在申请退款";
  412. this.orderTitle = this.orderInformation.status_text;
  413. } else if (this.orderInformation.status == "domestic_undelivered") {
  414. //设置顶部标题栏颜色
  415. uni.setNavigationBarColor({
  416. frontColor: "#000000",
  417. backgroundColor: "#f4f4f4",
  418. });
  419. this.orderDetail = "商品等待发货中";
  420. this.orderTitle = this.orderInformation.status_text;
  421. }
  422. });
  423. },
  424. },
  425. };
  426. </script>
  427. <style lang="scss" scoped>
  428. .page {
  429. padding: 20rpx 24rpx;
  430. position: relative;
  431. .title {
  432. font-size: 44rpx;
  433. color: #222;
  434. font-weight: 600;
  435. }
  436. .prompt {
  437. font-size: 24rpx;
  438. color: rgba(34, 34, 34, 0.5);
  439. margin-top: 12rpx;
  440. }
  441. .packaging {
  442. border-radius: 16rpx;
  443. background-color: #fff;
  444. padding: 30rpx 20rpx;
  445. .packaging-top {
  446. display: flex;
  447. justify-content: space-between;
  448. font-size: 28rpx;
  449. color: #222;
  450. }
  451. .packaging-center {
  452. display: flex;
  453. justify-content: space-around;
  454. align-items: center;
  455. margin-top: 26rpx;
  456. background-color: #f5f5f5;
  457. border-radius: 10rpx;
  458. padding: 20rpx 0;
  459. .jiantou {
  460. width: 130rpx;
  461. height: 10rpx;
  462. }
  463. .packaging-left {
  464. text-align: center;
  465. .left-top {
  466. font-size: 32rpx;
  467. color: #222;
  468. font-weight: 600;
  469. }
  470. .left-bottom {
  471. margin-top: 10rpx;
  472. font-size: 24rpx;
  473. color: rgba(34, 34, 34, 0.5);
  474. }
  475. }
  476. }
  477. .packaging-time {
  478. font-size: 28rpx;
  479. display: flex;
  480. align-items: center;
  481. margin-top: 28rpx;
  482. }
  483. }
  484. .photo {
  485. background-color: #fff;
  486. border-radius: 16rpx;
  487. padding: 20rpx 20rpx;
  488. margin-top: 20rpx;
  489. ._weight {
  490. display: flex;
  491. justify-content: space-between;
  492. font-size: 26rpx;
  493. color: rgba(34, 34, 34, 0.8);
  494. margin-bottom: 32rpx;
  495. ._image {
  496. width: 160rpx;
  497. height: 90rpx;
  498. // background-color: #d8d8d8;
  499. border-radius: 4rpx;
  500. }
  501. }
  502. .photo-bottom {
  503. display: flex;
  504. justify-content: flex-end;
  505. align-items: center;
  506. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  507. padding-top: 24rpx;
  508. .price {
  509. color: #f83224;
  510. font-weight: 600;
  511. }
  512. ._text-1 {
  513. font-size: 26rpx;
  514. }
  515. }
  516. }
  517. .address {
  518. padding: 36rpx 34rpx;
  519. background-color: #fff;
  520. border-radius: 10rpx;
  521. margin-top: 32rpx;
  522. .name-phone {
  523. display: flex;
  524. align-items: flex-end;
  525. .send {
  526. width: 40rpx;
  527. height: 40rpx;
  528. background-color: #000;
  529. color: #fff;
  530. border-radius: 50%;
  531. font-size: 22rpx;
  532. text-align: center;
  533. line-height: 40rpx;
  534. }
  535. .name {
  536. font-weight: 600;
  537. font-size: 30rpx;
  538. color: #222;
  539. margin-right: 28rpx;
  540. margin-left: 28rpx;
  541. }
  542. .phone {
  543. font-size: 24rpx;
  544. color: #777;
  545. }
  546. }
  547. .address-detail {
  548. font-size: 26rpx;
  549. color: #555;
  550. margin-top: 16rpx;
  551. margin-left: 60rpx;
  552. padding-bottom: 36rpx;
  553. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  554. margin-bottom: 34rpx;
  555. }
  556. ._bottom {
  557. border: none;
  558. margin-bottom: 0;
  559. }
  560. ._label-list {
  561. display: flex;
  562. flex-wrap: wrap;
  563. justify-content: space-between;
  564. .information {
  565. width: 49%;
  566. margin-bottom: 28rpx;
  567. font-size: 28rpx;
  568. }
  569. ._label {
  570. color: #666;
  571. font-size: 28rpx;
  572. }
  573. ._value {
  574. font-size: 28rpx;
  575. color: #333;
  576. }
  577. }
  578. }
  579. .num-information {
  580. background-color: #fff;
  581. border-radius: 16rpx;
  582. margin-top: 20rpx;
  583. padding: 28rpx 20rpx 2rpx 28rpx;
  584. .order {
  585. display: flex;
  586. justify-content: space-between;
  587. font-size: 28rpx;
  588. margin-bottom: 28rpx;
  589. ._label-1 {
  590. color: #666;
  591. }
  592. .num {
  593. color: #333;
  594. }
  595. }
  596. }
  597. .pay {
  598. display: flex;
  599. padding: 22rpx 28rpx;
  600. justify-content: space-between;
  601. margin-top: 20rpx;
  602. background-color: #fff;
  603. border-radius: 16rpx;
  604. }
  605. .footer {
  606. display: flex;
  607. justify-content: flex-end;
  608. background-color: #fff;
  609. position: fixed;
  610. bottom: 0;
  611. left: 0;
  612. width: 100%;
  613. height: 146rpx;
  614. padding-top: 20rpx;
  615. .btn-1 {
  616. height: 76rpx;
  617. padding: 0;
  618. margin: 0;
  619. font-size: 28rpx;
  620. color: #222;
  621. min-width: 188rpx;
  622. background-color: #fff;
  623. border-radius: 38rpx;
  624. border: 2rpx solid #979797;
  625. margin-right: 20rpx;
  626. }
  627. .btn-2 {
  628. height: 76rpx;
  629. padding: 0;
  630. margin: 0;
  631. font-size: 28rpx;
  632. color: #fff;
  633. min-width: 188rpx;
  634. background-color: #f83224;
  635. border-radius: 38rpx;
  636. margin-right: 20rpx;
  637. }
  638. }
  639. }
  640. </style>