orderInformation.vue 18 KB

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