orderFormDetail.vue 13 KB

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