orderInformation.vue 18 KB

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