orderFormDetail.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. <template>
  2. <view class="page" @click="closeShow">
  3. <!-- 订单状态 -->
  4. <view class="title">
  5. <view class="payment">{{ orderDetail.simplify_status_text }}</view>
  6. <text class="timer" v-if="orderDetail.simplify_status == 'unpaid'"
  7. >{{ i18n.leftOver
  8. }}<text v-if="loseEfficacy / 60 > 1">{{ hours }}{{ i18n.hour }}</text
  9. >{{ minute }}{{ i18n.automaticShutdown }}</text
  10. >
  11. <text
  12. v-else-if="orderDetail.simplify_status == 'undifference'"
  13. class="timer"
  14. >{{ i18n.additionalPostage }}</text
  15. >
  16. </view>
  17. <!-- 地址信息 -->
  18. <view class="address">
  19. <view class="name-phone">
  20. <u-icon name="map" size="22"></u-icon>
  21. <view style="margin: 0 20rpx; font-size: 32rpx">{{
  22. orderDetail.address_name
  23. }}</view>
  24. <text class="phone">{{ orderDetail.address_mobile }}</text>
  25. </view>
  26. <view class="address-detail">
  27. {{ orderDetail.full_address }}
  28. </view>
  29. </view>
  30. <view class="photo" v-if="orderDetail.simplify_status == 'undifference'">
  31. <view class="_weight">
  32. <text>{{ i18n.weighingWeight }}</text>
  33. <text>{{ orderDetail.call_weight }}kg</text>
  34. </view>
  35. <view class="_weight">
  36. <text>{{ i18n.weighingImage }}</text>
  37. <!-- <view class="_image"> </view> -->
  38. <image
  39. :src="orderDetail.call_image"
  40. mode="scaleToFill"
  41. class="_image"
  42. />
  43. </view>
  44. <view class="photo-bottom">
  45. <text class="_text-1">{{ i18n.needPostage }}</text>
  46. <view class="price">
  47. <text style="font-size: 20rpx">¥</text>
  48. <text>{{ orderDetail.fill_price.split(".")[0] }}</text
  49. >.
  50. <text style="font-size: 20rpx">{{
  51. orderDetail.fill_price.split(".")[1]
  52. }}</text>
  53. </view>
  54. </view>
  55. </view>
  56. <commodityDetailVue
  57. :status="status"
  58. :orderDetail="orderDetail"
  59. :language="language"
  60. />
  61. <view class="order">
  62. <view class="order-number">
  63. <text> {{ i18n.OrderNumber }} </text>
  64. <view>
  65. {{ orderDetail.order_no }} |
  66. <text decode @click="cope(orderDetail.order_no)">{{
  67. "&nbsp;" + i18n.cope
  68. }}</text>
  69. </view>
  70. </view>
  71. <view
  72. class="order-number"
  73. v-if="
  74. orderDetail.simplify_status == 'unreview' ||
  75. orderDetail.simplify_status == 'paid' ||
  76. orderDetail.simplify_status == 'merdelivered' ||
  77. orderDetail.simplify_status == 'finished' ||
  78. orderDetail.simplify_status == 'delivered' ||
  79. orderDetail.simplify_status == 'undelivered' ||
  80. orderDetail.simplify_status == 'undifference'
  81. "
  82. >
  83. <text> {{ i18n.payMethod }} </text>
  84. <view> {{ orderDetail.pay_type_name }} </view>
  85. </view>
  86. <view
  87. class="order-number"
  88. v-if="
  89. orderDetail.simplify_status == 'unreview' ||
  90. orderDetail.simplify_status == 'paid' ||
  91. orderDetail.simplify_status == 'finished' ||
  92. orderDetail.simplify_status == 'undelivered' ||
  93. orderDetail.simplify_status == 'delivered' ||
  94. orderDetail.simplify_status == 'undifference'
  95. "
  96. >
  97. <text> {{ i18n.payTime }} </text>
  98. <view> {{ orderDetail.paid_at }} </view>
  99. </view>
  100. <view class="order-number">
  101. <text> {{ i18n.Ordertime }} </text>
  102. <view>{{ orderDetail.created_at }} </view>
  103. </view>
  104. </view>
  105. <!-- <view
  106. class="contact"
  107. v-if="
  108. (orderDetail.simplify_status == 'unpaid' ||
  109. orderDetail.simplify_status == 'paid' ||
  110. orderDetail.simplify_status != 'merdelivered' ||
  111. orderDetail.simplify_status == 'undelivered') &&
  112. orderDetail.simplify_status != 'closed'
  113. "
  114. >
  115. 联系团长
  116. </view> -->
  117. <view
  118. class="footer"
  119. v-if="
  120. orderDetail.simplify_status != 'paid' &&
  121. orderDetail.simplify_status != 'merdelivered' &&
  122. orderDetail.simplify_status != 'unreview' &&
  123. orderDetail.simplify_status != 'undelivered'
  124. "
  125. >
  126. <button
  127. class="status-1"
  128. v-if="
  129. orderDetail.simplify_status == 'unpaid' ||
  130. orderDetail.simplify_status == 'unreview'
  131. "
  132. @click="cancelOrder"
  133. >
  134. {{ i18n.cancellationOrder }}
  135. </button>
  136. <button
  137. class="status-2"
  138. v-if="orderDetail.simplify_status == 'unpaid'"
  139. @click="toUnPay"
  140. >
  141. {{ i18n.continuePayment }}
  142. </button>
  143. <button
  144. class="status-1"
  145. @click.stop="deleteOrder"
  146. v-if="
  147. orderDetail.simplify_status == 'closed' || status == 3 || status == 4
  148. "
  149. >
  150. {{ i18n.deleteOrder }}
  151. </button>
  152. <button
  153. class="status-2"
  154. @click.stop="againOrder"
  155. v-if="
  156. orderDetail.simplify_status == 'closed' || status == 3 || status == 4
  157. "
  158. >
  159. {{ i18n.buyAgain }}
  160. </button>
  161. <button
  162. class="status-1"
  163. v-if="
  164. orderDetail.simplify_status == 'domestic_delivered' ||
  165. orderDetail.simplify_status == 'delivered'
  166. "
  167. @click="toLogistics"
  168. >
  169. {{ i18n.checkLogistics }}
  170. </button>
  171. <button
  172. class="status-2"
  173. v-if="
  174. orderDetail.simplify_status == 'domestic_delivered' ||
  175. orderDetail.simplify_status == 'delivered'
  176. "
  177. @click="confirmReceipt"
  178. >
  179. {{ i18n.confirmReceipt }}
  180. </button>
  181. <view
  182. style="margin-right: 40rpx; color: #777; font-size: 28rpx"
  183. v-if="orderDetail.simplify_status == 'finished'"
  184. @click="more"
  185. >{{ i18n.more }}</view
  186. >
  187. <button
  188. class="status-1"
  189. v-if="orderDetail.simplify_status == 'finished'"
  190. @click="toLogistics"
  191. >
  192. {{ i18n.checkLogistics }}
  193. </button>
  194. <button
  195. class="status-1"
  196. v-if="orderDetail.simplify_status == 'finished'"
  197. @click.stop="againOrder"
  198. >
  199. {{ i18n.anotherOrder }}
  200. </button>
  201. <!-- <button
  202. class="status-2"
  203. v-if="orderDetail.simplify_status == 'finished'"
  204. @click.stop="toEvaluate"
  205. >
  206. 评价
  207. </button> -->
  208. <button
  209. class="status-2"
  210. v-if="orderDetail.simplify_status == 'undifference'"
  211. @click.stop="toPay"
  212. >
  213. {{ i18n.payment }}
  214. </button>
  215. </view>
  216. <u-transition :show="show">
  217. <view class="transition" @click.stop="deleteOrder">{{
  218. i18n.deleteOrder
  219. }}</view>
  220. </u-transition>
  221. <agreePopup
  222. :title="i18n.confirmGoods"
  223. :agreeShow="agreeShow"
  224. @close="close"
  225. />
  226. </view>
  227. </template>
  228. <script>
  229. import commodityDetailVue from "./component/commodityDetail.vue";
  230. import agreePopup from "../mineComponent/agreePopup.vue";
  231. export default {
  232. components: {
  233. commodityDetailVue,
  234. agreePopup,
  235. },
  236. data() {
  237. return {
  238. status: 6,
  239. show: false,
  240. orderDetail: {},
  241. agreeShow: false,
  242. hours: "",
  243. minute: "",
  244. loseEfficacy: "", //失效时间
  245. language: this._language, //当前用户选择的语言
  246. };
  247. },
  248. computed: {
  249. i18n() {
  250. return this.$t("index");
  251. },
  252. },
  253. methods: {
  254. //复制
  255. cope(e) {
  256. uni.setClipboardData({
  257. data: e,
  258. success() {
  259. uni.showToast({
  260. title: "复制成功",
  261. icon: "none",
  262. });
  263. },
  264. });
  265. },
  266. //跳转评价
  267. toEvaluate() {
  268. uni.navigateTo({
  269. url: `/pageD/evaluate/evaluate?orderId=${this.orderDetail.id}`,
  270. });
  271. },
  272. more() {
  273. this.show = true;
  274. },
  275. //确认收货
  276. confirmReceipt() {
  277. this.agreeShow = true;
  278. // uni.$u.http
  279. // .post(`/api/order/receive/${this.orderDetail.id}`)
  280. // .then((res) => {});
  281. },
  282. //value为true时,确认收货
  283. //跳转支付
  284. toPay() {
  285. uni.navigateTo({
  286. url: `/pageA/payorder?sum=${this.orderDetail.fill_price}&orderid=${this.orderDetail.id}&orderType=difference`,
  287. });
  288. },
  289. //再来一单 or 再次购买
  290. againOrder() {
  291. uni.navigateTo({
  292. url: `/pageD/newBulitOrder/newBulitOrder?orderId=${this.orderDetail.id}`,
  293. });
  294. },
  295. //跳转支付
  296. toUnPay() {
  297. uni.navigateTo({
  298. url: `/pageA/payorder?sum=${this.orderDetail.amount}&orderid=${this.orderDetail.id}`,
  299. });
  300. },
  301. //删除订单
  302. deleteOrder() {
  303. uni.$u.http
  304. .post(`/api/order/order_del`, { order_id: this.orderDetail.id })
  305. .then((res) => {
  306. uni.navigateBack({
  307. delta: 1,
  308. });
  309. this.show = false;
  310. uni.showToast({
  311. title: this.i18n.successfullydelete,
  312. icon: "none",
  313. });
  314. });
  315. },
  316. //查看物流进度
  317. toLogistics(value) {
  318. uni.navigateTo({
  319. url: "/pageD/logisticsProgress/logisticsProgress",
  320. });
  321. },
  322. close(value) {
  323. if (value) {
  324. uni.$u.http
  325. .post(`/api/order/receive/${this.orderDetail.id}`)
  326. .then((res) => {
  327. this.agreeShow = false;
  328. this.getDetail();
  329. uni.showToast({
  330. title: "订单已确认收货",
  331. icon: "none",
  332. });
  333. });
  334. } else {
  335. this.agreeShow = false;
  336. }
  337. },
  338. closeShow(e) {
  339. if (
  340. e._relatedInfo.anchorTargetText != "更多" &&
  341. e._relatedInfo.anchorTargetText != "删除订单"
  342. ) {
  343. this.show = false;
  344. }
  345. },
  346. //取消订单
  347. cancelOrder() {
  348. uni.$u.http
  349. .post(`/api/order/cancel/${this.orderDetail.id}`)
  350. .then((res) => {
  351. this.getDetail();
  352. uni.showToast({
  353. title: this.i18n.annullato,
  354. icon: "none",
  355. });
  356. });
  357. },
  358. //获取时间,倒计时
  359. getCountdown(timer) {
  360. const nowTime = new Date().getTime(); //当前时间的毫秒数
  361. const appointTime = new Date(timer).getTime(); //创建订单时间的毫秒数
  362. const count = nowTime - appointTime; //当前时间到创建订单时间的毫秒数
  363. const loseEfficacyTime = this.loseEfficacy * 60 * 1000; //失效时间转换为毫秒
  364. //86400000 24小时
  365. if (count < loseEfficacyTime) {
  366. const currentTime = loseEfficacyTime - count;
  367. this.hours = Math.floor(currentTime / (1000 * 60 * 60)); //获取小时
  368. //获取分钟
  369. this.minute = Math.floor(
  370. (currentTime % (1000 * 60 * 60)) / (1000 * 60)
  371. );
  372. }
  373. },
  374. //获取订单信息
  375. getDetail() {
  376. uni.$u.http.get(`/api/order/read?id=${this.status}`).then((res) => {
  377. this.orderDetail = res;
  378. this.getCountdown(this.orderDetail.created_at);
  379. });
  380. },
  381. //获取配置信息
  382. getConfig() {
  383. uni.$u.http
  384. .get(`/api/config?module=basic&key=order_pay_termine`)
  385. .then((res) => {
  386. this.loseEfficacy = res;
  387. });
  388. },
  389. },
  390. onShow() {
  391. this.getConfig();
  392. this.getDetail();
  393. },
  394. onLoad(option) {
  395. this.status = option.orderId;
  396. },
  397. };
  398. </script>
  399. <style scoped lang="scss">
  400. .page {
  401. padding: 20rpx 24rpx 180rpx;
  402. .title {
  403. .payment {
  404. font-size: 44rpx;
  405. font-weight: 600;
  406. margin-bottom: 20rpx;
  407. }
  408. .timer {
  409. font-size: 28rpx;
  410. color: #666;
  411. }
  412. }
  413. .address {
  414. background-color: #fff;
  415. border-radius: 16rpx;
  416. padding: 34rpx 24rpx 28rpx;
  417. margin-top: 24rpx;
  418. .name-phone {
  419. display: flex;
  420. align-items: center;
  421. align-items: flex-end;
  422. .phone {
  423. font-size: 26rpx;
  424. color: #666;
  425. }
  426. }
  427. .address-detail {
  428. margin-top: 20rpx;
  429. font-size: 24rpx;
  430. color: #444;
  431. margin-left: 60rpx;
  432. }
  433. }
  434. .photo {
  435. background-color: #fff;
  436. border-radius: 16rpx;
  437. padding: 20rpx 20rpx;
  438. margin-top: 20rpx;
  439. ._weight {
  440. display: flex;
  441. justify-content: space-between;
  442. font-size: 26rpx;
  443. color: rgba(34, 34, 34, 0.8);
  444. margin-bottom: 32rpx;
  445. ._image {
  446. width: 160rpx;
  447. height: 90rpx;
  448. // background-color: #d8d8d8;
  449. border-radius: 4rpx;
  450. }
  451. }
  452. .photo-bottom {
  453. display: flex;
  454. justify-content: flex-end;
  455. align-items: center;
  456. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  457. padding-top: 24rpx;
  458. .price {
  459. color: #f83224;
  460. font-weight: 600;
  461. }
  462. ._text-1 {
  463. font-size: 26rpx;
  464. }
  465. }
  466. }
  467. .order {
  468. background-color: #fff;
  469. border-radius: 16rpx;
  470. color: rgba(54, 54, 54, 0.7);
  471. font-size: 28rpx;
  472. margin-top: 20rpx;
  473. padding: 20rpx 20rpx;
  474. .order-number {
  475. display: flex;
  476. justify-content: space-between;
  477. margin-bottom: 32rpx;
  478. }
  479. }
  480. .contact {
  481. padding: 20rpx 0;
  482. background-color: #fff;
  483. display: flex;
  484. justify-content: center;
  485. align-items: center;
  486. border-radius: 16rpx;
  487. margin-top: 20rpx;
  488. margin-bottom: 160rpx;
  489. }
  490. .footer {
  491. position: fixed;
  492. bottom: 0;
  493. left: 0;
  494. background-color: #fff;
  495. display: flex;
  496. justify-content: flex-end;
  497. align-items: center;
  498. padding-top: 20rpx;
  499. padding-bottom: 80rpx;
  500. height: 66rpx;
  501. width: 100%;
  502. .status-1 {
  503. background-color: #fff;
  504. border-radius: 34rpx;
  505. margin: 0;
  506. padding: 0;
  507. font-size: 28rpx;
  508. color: #222;
  509. width: 168rpx;
  510. height: 68rpx;
  511. margin-right: 20rpx;
  512. border: 2rpx solid #979797;
  513. }
  514. .status-2 {
  515. background-color: #ffffff;
  516. border-radius: 34rpx;
  517. margin: 0;
  518. padding: 0;
  519. font-size: 28rpx;
  520. color: #f83224;
  521. width: 168rpx;
  522. height: 68rpx;
  523. border: 2rpx solid #f83224;
  524. margin-right: 24rpx;
  525. }
  526. }
  527. .transition {
  528. width: 164rpx;
  529. height: 88rpx;
  530. background: #ffffff;
  531. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  532. position: fixed;
  533. bottom: 160rpx;
  534. text-align: center;
  535. line-height: 88rpx;
  536. font-size: 26rpx;
  537. color: #222;
  538. }
  539. }
  540. </style>