orderInformation.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  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"> {{ i18n.origin }} </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"> {{ i18n.destination }} </view>
  35. </view>
  36. </view>
  37. <view class="packaging-time">
  38. <view class="time">
  39. <text>{{ i18n.start }}:</text>
  40. <text>{{
  41. orderInformation.containerBase.begin_date + "&emsp;"
  42. }}</text>
  43. </view>
  44. <view class="time">
  45. <text>{{ i18n.cut }}:</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>{{ i18n.weighingWeight }}</text>
  53. <text>{{ orderInformation.actual_weight }}kg</text>
  54. </view>
  55. <view class="_weight">
  56. <text>{{ i18n.weighingImage }}</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">{{ i18n.paymentRequired }}</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"> {{ i18n.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" style="background-color: #f83224; color: #fff">
  87. {{ i18n.putAway }}
  88. </view>
  89. <view class="name"> {{ orderInformation.to_name }} </view>
  90. <view class="phone"> {{ orderInformation.to_mobile }} </view>
  91. </view>
  92. <view class="address-detail _bottom">
  93. {{ orderInformation.to_full_address }}
  94. </view>
  95. <image
  96. style="height: 4rpx; margin-bottom: 40rpx"
  97. src="../../static/mine/338.png"
  98. mode=""
  99. ></image>
  100. <view class="_label-list" v-for="item in orderInformation.goods">
  101. <view class="information">
  102. <text class="_label">{{ i18n.item }}:</text>
  103. <text class="_value">{{ item.name }}</text>
  104. </view>
  105. <view class="information">
  106. <text class="_label">{{ i18n.goodsNum }}:</text>
  107. <text class="_value">{{ item.number }}</text>
  108. </view>
  109. <view class="information">
  110. <text class="_label">{{ i18n.weight }}:</text>
  111. <text class="_value">{{ item.actual_weight }}kg</text>
  112. </view>
  113. <view class="information">
  114. <text class="_label">{{ i18n.typeof }}:</text>
  115. <text class="_value">{{ item.type_text }}</text>
  116. </view>
  117. <view style="display: flex">
  118. <text class="_label">{{ i18n.flow }}:</text>
  119. <view class="_value">
  120. <text
  121. >{{ orderInformation.transportType.name_cn + "&nbsp;" }}
  122. </text>
  123. <text> | {{ orderInformation.containerBase.name_cn }}</text>
  124. </view>
  125. </view>
  126. </view>
  127. </view>
  128. <view class="num-information">
  129. <view class="order" style="">
  130. <text class="_label-1">{{ i18n.OrderNumber }}</text>
  131. <view class="num">
  132. <text>{{ orderInformation.order_no }}</text
  133. >{{ "&nbsp;" + "|" + "&nbsp;"
  134. }}<text @click="cope(orderInformation.order_no)">{{
  135. i18n.cope
  136. }}</text>
  137. </view>
  138. </view>
  139. <view class="order">
  140. <text class="_label-1">{{ i18n.Ordertime }}</text>
  141. <view class="num">{{ orderInformation.created_at }} </view>
  142. </view>
  143. <view class="order" v-if="isShowPayTime">
  144. <text class="_label-1">{{ i18n.payTime }}</text>
  145. <view class="num"> {{ orderInformation.paid_at }} </view>
  146. </view>
  147. <view
  148. class="order"
  149. v-if="
  150. (orderInformation.status == 'overseas_delivered' &&
  151. orderInformation.status != 'domestic_delivered') ||
  152. orderInformation.status == 'finished'
  153. "
  154. >
  155. <text class="_label-1">{{ i18n.sendTime }}</text>
  156. <view class="num"> {{ orderInformation.overseas_delivered_at }} </view>
  157. </view>
  158. <view class="order" v-if="orderInformation.status == 'finished'">
  159. <text class="_label-1">{{ i18n.signForTime }}</text>
  160. <view class="num"> {{ orderInformation.overseas_received_at }} </view>
  161. </view>
  162. </view>
  163. <view
  164. class="pay"
  165. v-if="
  166. orderInformation.status != 'group_unpaid' &&
  167. orderInformation.status != 'unpaid'
  168. "
  169. >
  170. <text>{{
  171. orderInformation.status == "group_unpaid" ||
  172. orderInformation.status == "unpaid"
  173. ? i18n.pengingPay
  174. : i18n.paid
  175. }}</text>
  176. <text style="color: #f83224; font-weight: 600">{{
  177. orderInformation.paid_amount
  178. }}</text>
  179. </view>
  180. <view
  181. class="footer"
  182. v-if="
  183. orderInformation.status == 'domestic_delivered' ||
  184. orderInformation.status == 'overseas_delivered' ||
  185. orderInformation.status == 'finished'
  186. "
  187. >
  188. <button
  189. class="btn-1"
  190. @click="toLogistics"
  191. v-if="orderInformation.status == 'finished'"
  192. >
  193. {{ i18n.delete }}
  194. </button>
  195. <button class="btn-1" @click="toLogistics">
  196. {{ i18n.checkLogistics }}
  197. </button>
  198. <button
  199. class="btn-1"
  200. @click="fillInformation"
  201. v-if="orderInformation.status == 'domestic_undelivered'"
  202. >
  203. {{ i18n.logisticsInformation }}
  204. </button>
  205. <button
  206. class="btn-2"
  207. @click="toPay"
  208. v-if="orderInformation.status == 'unpaid'"
  209. >
  210. {{ i18n.payment }}
  211. </button>
  212. </view>
  213. <view class="footer" v-else-if="isShowFooter">
  214. <button
  215. class="btn-1"
  216. @click="fillInformation"
  217. v-if="
  218. (orderInformation.type == 'group_package' ||
  219. orderInformation.type == 'express_order') &&
  220. orderInformation.status == 'domestic_undelivered'
  221. "
  222. >
  223. {{ i18n.logisticsInformation }}
  224. </button>
  225. <!-- <button
  226. class="btn-2"
  227. @click="toSending"
  228. v-if="
  229. orderInformation.type == 'mall_order' &&
  230. orderInformation.status == 'domestic_undelivered'
  231. "
  232. >
  233. {{ i18n.mail }}
  234. </button> -->
  235. <button
  236. class="btn-2"
  237. @click="toPay"
  238. v-if="
  239. orderInformation.status == 'unpaid' ||
  240. orderInformation.status == 'group_unpaid'
  241. "
  242. >
  243. {{ i18n.payment }}
  244. </button></view
  245. >
  246. <Fill :show="show" @close="close" />
  247. </view>
  248. </template>
  249. <script>
  250. import Fill from "./component/fill.vue";
  251. export default {
  252. components: {
  253. Fill,
  254. },
  255. data() {
  256. return {
  257. orderStauts: 0,
  258. orderTitle: "",
  259. orderDetail: "",
  260. packageId: "",
  261. orderInformation: {},
  262. show: false,
  263. };
  264. },
  265. computed: {
  266. //判断是否显示付款时间
  267. isShowPayTime() {
  268. if (
  269. this.orderInformation.type == "group_package" ||
  270. this.orderInformation.type == "mall_order"
  271. ) {
  272. if (
  273. this.orderInformation.status == "packaging" ||
  274. this.orderInformation.status == "group_unpaid" ||
  275. this.orderInformation.status == "unpaid"
  276. ) {
  277. return false;
  278. } else {
  279. return true;
  280. }
  281. } else if (
  282. this.orderInformation.status == "domestic_undelivered" ||
  283. this.orderInformation.status == "domestic_delivered" ||
  284. this.orderInformation.status == "domestic_received"
  285. ) {
  286. return false;
  287. }
  288. },
  289. //是否显示底部按钮
  290. isShowFooter() {
  291. if (
  292. this.orderInformation.type == "mall_order" &&
  293. this.orderInformation.status == "domestic_undelivered"
  294. ) {
  295. return false;
  296. } else if (
  297. this.orderInformation.type != "mall_order" &&
  298. this.orderInformation.status == "domestic_undelivered"
  299. ) {
  300. return true;
  301. } else if (
  302. this.orderInformation.status == "unpaid" ||
  303. this.orderInformation.status == "group_unpaid"
  304. ) {
  305. return true;
  306. }
  307. },
  308. i18n() {
  309. return this.$t("index");
  310. },
  311. },
  312. onLoad(options) {
  313. this.orderStauts = options.orderStatus;
  314. this.getDetail();
  315. },
  316. onShow() {
  317. this.getDetail();
  318. },
  319. created() {},
  320. methods: {
  321. cope(str) {
  322. uni.setClipboardData({
  323. data: str,
  324. success() {
  325. uni.showToast({
  326. title: "复制成功",
  327. icon: "none",
  328. });
  329. },
  330. });
  331. },
  332. //去寄件
  333. toSending() {
  334. uni.navigateTo({
  335. url: "/pageD/sending/sending?orderId=" + this.orderInformation.id,
  336. });
  337. },
  338. setStatus(num) {
  339. this.orderStauts = num;
  340. },
  341. //查看物流进度
  342. toLogistics() {
  343. uni.navigateTo({
  344. url: "/pageD/logisticsProgress/logisticsProgress",
  345. });
  346. },
  347. //填写物流信息
  348. fillInformation() {
  349. this.show = true;
  350. },
  351. //关闭弹窗
  352. close(value) {
  353. this.show = false;
  354. if (value.expressCode) {
  355. uni.$u.http
  356. .post(`/api/express-order/delivery/${this.orderInformation.id}`, {
  357. domestic_logistics_company_code: value.expressCode,
  358. domestic_logistics_no: value.expressNum,
  359. })
  360. .then((res) => {
  361. this.getDetail();
  362. uni.showToast({
  363. title: this.i18n.saved,
  364. });
  365. });
  366. }
  367. },
  368. //去支付
  369. toPay() {
  370. uni.navigateTo({
  371. url: `/pageD/paymentOrder/paymentOrder?money=${this.orderInformation.pay_amount}&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}`,
  372. });
  373. },
  374. getDetail() {
  375. uni.$u.http.get(`/api/express-order/${this.orderStauts}`).then((res) => {
  376. this.orderInformation = res;
  377. if (this.orderInformation.status == "domestic_delivered") {
  378. //设置顶部标题栏颜色
  379. uni.setNavigationBarColor({
  380. frontColor: "#000000",
  381. backgroundColor: "#f4f4f4",
  382. });
  383. this.orderDetail = this.i18n.toPiattaforma;
  384. this.orderTitle = this.orderInformation.status_text;
  385. } else if (this.orderInformation.status == "unpaid") {
  386. //设置顶部标题栏颜色
  387. uni.setNavigationBarColor({
  388. frontColor: "#000000",
  389. backgroundColor: "#f4f4f4",
  390. });
  391. this.orderDetail = this.i18n.peso;
  392. this.orderTitle = this.orderInformation.status_text;
  393. } else if (this.orderInformation.status == "overseas_undelivered") {
  394. //设置顶部标题栏颜色
  395. uni.setNavigationBarColor({
  396. frontColor: "#000000",
  397. backgroundColor: "#f4f4f4",
  398. });
  399. this.orderDetail = this.i18n.waitPiattaforma;
  400. this.orderTitle = this.orderInformation.status_text;
  401. } else if (this.orderInformation.status == "overseas_delivered") {
  402. //设置顶部标题栏颜色
  403. uni.setNavigationBarColor({
  404. frontColor: "#000000",
  405. backgroundColor: "#f4f4f4",
  406. });
  407. this.orderDetail = this.i18n.prodottoInviato;
  408. this.orderTitle = this.orderInformation.status_text;
  409. } else if (this.orderStauts == 4) {
  410. //设置顶部标题栏颜色
  411. uni.setNavigationBarColor({
  412. frontColor: "#000000",
  413. backgroundColor: "#ffffff",
  414. });
  415. uni.setNavigationBarTitle({
  416. title: this.i18n.insiemeDetail,
  417. });
  418. } else if (
  419. this.orderInformation.status == "finished" ||
  420. this.orderInformation.status == "overseas_received"
  421. ) {
  422. //设置顶部标题栏颜色
  423. uni.setNavigationBarColor({
  424. frontColor: "#000000",
  425. backgroundColor: "#f4f4f4",
  426. });
  427. this.orderDetail = this.i18n.orderCompleto;
  428. this.orderTitle = this.orderInformation.status_text;
  429. } else if (this.orderInformation.status == "domestic_received") {
  430. //设置顶部标题栏颜色
  431. uni.setNavigationBarColor({
  432. frontColor: "#000000",
  433. backgroundColor: "#f4f4f4",
  434. });
  435. this.orderDetail = this.i18n.pesoEmissione;
  436. this.orderTitle = this.orderInformation.status_text;
  437. } else if (this.orderInformation.status == "closed") {
  438. //设置顶部标题栏颜色
  439. uni.setNavigationBarColor({
  440. frontColor: "#000000",
  441. backgroundColor: "#f4f4f4",
  442. });
  443. this.orderDetail = this.i18n.orderClose;
  444. this.orderTitle = this.orderInformation.status_text;
  445. } else if (this.orderInformation.status == "refunded") {
  446. //设置顶部标题栏颜色
  447. uni.setNavigationBarColor({
  448. frontColor: "#000000",
  449. backgroundColor: "#f4f4f4",
  450. });
  451. this.orderDetail = this.i18n.orderRefund;
  452. this.orderTitle = this.orderInformation.status_text;
  453. } else if (this.orderInformation.status == "refunding") {
  454. //设置顶部标题栏颜色
  455. uni.setNavigationBarColor({
  456. frontColor: "#000000",
  457. backgroundColor: "#f4f4f4",
  458. });
  459. this.orderDetail = this.i18n.refunding;
  460. this.orderTitle = this.orderInformation.status_text;
  461. } else if (this.orderInformation.status == "domestic_undelivered") {
  462. //设置顶部标题栏颜色
  463. uni.setNavigationBarColor({
  464. frontColor: "#000000",
  465. backgroundColor: "#f4f4f4",
  466. });
  467. this.orderDetail = this.i18n.waitCommity;
  468. this.orderTitle = this.orderInformation.status_text;
  469. }
  470. });
  471. },
  472. },
  473. };
  474. </script>
  475. <style lang="scss" scoped>
  476. .page {
  477. padding: 20rpx 24rpx;
  478. position: relative;
  479. padding-bottom: 186rpx;
  480. .title {
  481. font-size: 44rpx;
  482. color: #222;
  483. font-weight: 600;
  484. }
  485. .prompt {
  486. font-size: 24rpx;
  487. color: rgba(34, 34, 34, 0.5);
  488. margin-top: 12rpx;
  489. }
  490. .packaging {
  491. border-radius: 16rpx;
  492. background-color: #fff;
  493. padding: 30rpx 20rpx;
  494. .packaging-top {
  495. display: flex;
  496. justify-content: space-between;
  497. font-size: 28rpx;
  498. color: #222;
  499. }
  500. .packaging-center {
  501. display: flex;
  502. justify-content: space-around;
  503. align-items: center;
  504. margin-top: 26rpx;
  505. background-color: #f5f5f5;
  506. border-radius: 10rpx;
  507. padding: 20rpx 0;
  508. .jiantou {
  509. width: 130rpx;
  510. height: 10rpx;
  511. }
  512. .packaging-left {
  513. text-align: center;
  514. .left-top {
  515. font-size: 32rpx;
  516. color: #222;
  517. font-weight: 600;
  518. }
  519. .left-bottom {
  520. margin-top: 10rpx;
  521. font-size: 24rpx;
  522. color: rgba(34, 34, 34, 0.5);
  523. }
  524. }
  525. }
  526. .packaging-time {
  527. font-size: 28rpx;
  528. display: flex;
  529. align-items: center;
  530. margin-top: 28rpx;
  531. }
  532. }
  533. .photo {
  534. background-color: #fff;
  535. border-radius: 16rpx;
  536. padding: 20rpx 20rpx;
  537. margin-top: 20rpx;
  538. ._weight {
  539. display: flex;
  540. justify-content: space-between;
  541. font-size: 26rpx;
  542. color: rgba(34, 34, 34, 0.8);
  543. margin-bottom: 32rpx;
  544. ._image {
  545. width: 160rpx;
  546. height: 90rpx;
  547. // background-color: #d8d8d8;
  548. border-radius: 4rpx;
  549. }
  550. }
  551. .photo-bottom {
  552. display: flex;
  553. justify-content: flex-end;
  554. align-items: center;
  555. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  556. padding-top: 24rpx;
  557. .price {
  558. color: #f83224;
  559. font-weight: 600;
  560. }
  561. ._text-1 {
  562. font-size: 26rpx;
  563. }
  564. }
  565. }
  566. .address {
  567. padding: 36rpx 34rpx;
  568. background-color: #fff;
  569. border-radius: 10rpx;
  570. margin-top: 32rpx;
  571. .name-phone {
  572. display: flex;
  573. align-items: flex-end;
  574. .send {
  575. width: 40rpx;
  576. height: 40rpx;
  577. background-color: #000;
  578. color: #fff;
  579. border-radius: 50%;
  580. font-size: 22rpx;
  581. text-align: center;
  582. line-height: 40rpx;
  583. }
  584. .name {
  585. font-weight: 600;
  586. font-size: 30rpx;
  587. color: #222;
  588. margin-right: 28rpx;
  589. margin-left: 28rpx;
  590. }
  591. .phone {
  592. font-size: 24rpx;
  593. color: #777;
  594. }
  595. }
  596. .address-detail {
  597. font-size: 26rpx;
  598. color: #555;
  599. margin-top: 16rpx;
  600. margin-left: 60rpx;
  601. padding-bottom: 36rpx;
  602. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  603. margin-bottom: 34rpx;
  604. }
  605. ._bottom {
  606. border: none;
  607. margin-bottom: 0;
  608. }
  609. ._label-list {
  610. display: flex;
  611. flex-wrap: wrap;
  612. justify-content: space-between;
  613. .information {
  614. width: 49%;
  615. margin-bottom: 28rpx;
  616. font-size: 28rpx;
  617. }
  618. ._label {
  619. color: #666;
  620. font-size: 28rpx;
  621. }
  622. ._value {
  623. font-size: 28rpx;
  624. color: #333;
  625. }
  626. }
  627. }
  628. .num-information {
  629. background-color: #fff;
  630. border-radius: 16rpx;
  631. margin-top: 20rpx;
  632. padding: 28rpx 20rpx 2rpx 28rpx;
  633. .order {
  634. display: flex;
  635. justify-content: space-between;
  636. font-size: 28rpx;
  637. margin-bottom: 28rpx;
  638. ._label-1 {
  639. color: #666;
  640. }
  641. .num {
  642. color: #333;
  643. }
  644. }
  645. }
  646. .pay {
  647. display: flex;
  648. padding: 22rpx 28rpx;
  649. justify-content: space-between;
  650. margin-top: 20rpx;
  651. background-color: #fff;
  652. border-radius: 16rpx;
  653. }
  654. .footer {
  655. display: flex;
  656. justify-content: flex-end;
  657. background-color: #fff;
  658. position: fixed;
  659. bottom: 0;
  660. left: 0;
  661. width: 100%;
  662. height: 146rpx;
  663. padding-top: 20rpx;
  664. .btn-1 {
  665. height: 76rpx;
  666. padding: 0;
  667. margin: 0;
  668. font-size: 28rpx;
  669. color: #222;
  670. min-width: 188rpx;
  671. background-color: #fff;
  672. border-radius: 38rpx;
  673. border: 2rpx solid #979797;
  674. margin-right: 20rpx;
  675. }
  676. .btn-2 {
  677. height: 76rpx;
  678. padding: 0;
  679. margin: 0;
  680. font-size: 28rpx;
  681. color: #fff;
  682. min-width: 188rpx;
  683. background-color: #f83224;
  684. border-radius: 38rpx;
  685. margin-right: 20rpx;
  686. }
  687. }
  688. }
  689. </style>