orderFormDetail.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  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. @click.stop="deleteOrder"
  141. v-if="
  142. orderDetail.simplify_status == 'closed' || status == 3 || status == 4
  143. "
  144. >
  145. 删除订单
  146. </button>
  147. <button
  148. class="status-2"
  149. @click.stop="againOrder"
  150. v-if="
  151. orderDetail.simplify_status == 'closed' || status == 3 || status == 4
  152. "
  153. >
  154. 再次购买
  155. </button>
  156. <button
  157. class="status-1"
  158. v-if="
  159. orderDetail.simplify_status == 'domestic_delivered' ||
  160. orderDetail.simplify_status == 'delivered'
  161. "
  162. @click="toLogistics"
  163. >
  164. 查看物流
  165. </button>
  166. <button
  167. class="status-2"
  168. v-if="
  169. orderDetail.simplify_status == 'domestic_delivered' ||
  170. orderDetail.simplify_status == 'delivered'
  171. "
  172. @click="confirmReceipt"
  173. >
  174. 确认收货
  175. </button>
  176. <view
  177. style="margin-right: 40rpx; color: #777; font-size: 28rpx"
  178. v-if="orderDetail.simplify_status == 'finished'"
  179. @click="more"
  180. >更多</view
  181. >
  182. <button
  183. class="status-1"
  184. v-if="orderDetail.simplify_status == 'finished'"
  185. @click="toLogistics"
  186. >
  187. 查看物流
  188. </button>
  189. <button
  190. class="status-1"
  191. v-if="orderDetail.simplify_status == 'finished'"
  192. @click.stop="againOrder"
  193. >
  194. 再来一单
  195. </button>
  196. <button
  197. class="status-2"
  198. v-if="orderDetail.simplify_status == 'finished'"
  199. @click.stop="toEvaluate"
  200. >
  201. 评价
  202. </button>
  203. <button
  204. class="status-2"
  205. v-if="orderDetail.simplify_status == 'undifference'"
  206. @click.stop="toPay"
  207. >
  208. 立即付款
  209. </button>
  210. </view>
  211. <u-transition :show="show">
  212. <view class="transition" @click.stop="deleteOrder">删除订单</view>
  213. </u-transition>
  214. <agreePopup title="是否确认收货" :agreeShow="agreeShow" @close="close" />
  215. </view>
  216. </template>
  217. <script>
  218. import commodityDetailVue from "./component/commodityDetail.vue";
  219. import agreePopup from "../mineComponent/agreePopup.vue";
  220. export default {
  221. components: {
  222. commodityDetailVue,
  223. agreePopup,
  224. },
  225. data() {
  226. return {
  227. status: 6,
  228. show: false,
  229. orderDetail: {},
  230. agreeShow: false,
  231. hours: "",
  232. minute: "",
  233. loseEfficacy: "", //失效时间
  234. };
  235. },
  236. methods: {
  237. //复制
  238. cope(e) {
  239. uni.setClipboardData({
  240. data: e,
  241. success() {
  242. uni.showToast({
  243. title: "复制成功",
  244. icon: "none",
  245. });
  246. },
  247. });
  248. },
  249. //跳转评价
  250. toEvaluate() {
  251. uni.navigateTo({
  252. url: `/pageD/evaluate/evaluate?orderId=${this.orderDetail.id}`,
  253. });
  254. },
  255. more() {
  256. this.show = true;
  257. },
  258. //确认收货
  259. confirmReceipt() {
  260. this.agreeShow = true;
  261. // uni.$u.http
  262. // .post(`/api/order/receive/${this.orderDetail.id}`)
  263. // .then((res) => {});
  264. },
  265. //value为true时,确认收货
  266. //跳转支付
  267. toPay() {
  268. uni.navigateTo({
  269. url: `/pageA/payorder?sum=${this.orderDetail.fill_price}&orderid=${this.orderDetail.id}&orderType=difference`,
  270. });
  271. },
  272. //再来一单 or 再次购买
  273. againOrder() {
  274. uni.navigateTo({
  275. url: `/pageD/newBulitOrder/newBulitOrder?orderId=${this.orderDetail.id}`,
  276. });
  277. },
  278. //跳转支付
  279. toUnPay() {
  280. uni.navigateTo({
  281. url: `/pageA/payorder?sum=${this.orderDetail.amount}&orderid=${this.orderDetail.id}`,
  282. });
  283. },
  284. //删除订单
  285. deleteOrder() {
  286. uni.$u.http
  287. .post(`/api/order/order_del`, { order_id: this.orderDetail.id })
  288. .then((res) => {
  289. this.getDetail();
  290. this.show = false;
  291. uni.showToast({
  292. title: "删除成功",
  293. icon: "none",
  294. });
  295. });
  296. },
  297. //查看物流进度
  298. toLogistics(value) {
  299. uni.navigateTo({
  300. url: "/pageD/logisticsProgress/logisticsProgress",
  301. });
  302. },
  303. close(value) {
  304. if (value) {
  305. uni.$u.http
  306. .post(`/api/order/receive/${this.orderDetail.id}`)
  307. .then((res) => {
  308. this.agreeShow = false;
  309. this.getDetail();
  310. uni.showToast({
  311. title: "订单已确认收货",
  312. icon: "none",
  313. });
  314. });
  315. } else {
  316. this.agreeShow = false;
  317. }
  318. },
  319. closeShow(e) {
  320. if (
  321. e._relatedInfo.anchorTargetText != "更多" &&
  322. e._relatedInfo.anchorTargetText != "删除订单"
  323. ) {
  324. this.show = false;
  325. }
  326. },
  327. //取消订单
  328. cancelOrder() {
  329. uni.$u.http
  330. .post(`/api/order/cancel/${this.orderDetail.id}`)
  331. .then((res) => {
  332. this.getDetail();
  333. uni.showToast({
  334. title: "已取消",
  335. icon: "none",
  336. });
  337. });
  338. },
  339. //获取时间,倒计时
  340. getCountdown(timer) {
  341. const nowTime = new Date().getTime(); //当前时间的毫秒数
  342. const appointTime = new Date(timer).getTime(); //创建订单时间的毫秒数
  343. const count = nowTime - appointTime; //当前时间到创建订单时间的毫秒数
  344. const loseEfficacyTime = this.loseEfficacy * 60 * 1000; //失效时间转换为毫秒
  345. //86400000 24小时
  346. if (count < loseEfficacyTime) {
  347. const currentTime = loseEfficacyTime - count;
  348. this.hours = Math.floor(currentTime / (1000 * 60 * 60)); //获取小时
  349. //获取分钟
  350. this.minute = Math.floor(
  351. (currentTime % (1000 * 60 * 60)) / (1000 * 60)
  352. );
  353. }
  354. },
  355. //获取订单信息
  356. getDetail() {
  357. uni.$u.http.get(`/api/order/read?id=${this.status}`).then((res) => {
  358. this.orderDetail = res;
  359. this.getCountdown(this.orderDetail.created_at);
  360. });
  361. },
  362. //获取配置信息
  363. getConfig() {
  364. uni.$u.http
  365. .get(`/api/config?module=basic&key=order_pay_termine`)
  366. .then((res) => {
  367. this.loseEfficacy = res;
  368. });
  369. },
  370. },
  371. onShow() {
  372. this.getConfig();
  373. this.getDetail();
  374. },
  375. created() {},
  376. mounted() {
  377. // this.getDetail();
  378. },
  379. onLoad(option) {
  380. this.status = option.orderId;
  381. },
  382. };
  383. </script>
  384. <style scoped lang="scss">
  385. .page {
  386. padding: 20rpx 24rpx 180rpx;
  387. .title {
  388. .payment {
  389. font-size: 44rpx;
  390. font-weight: 600;
  391. margin-bottom: 20rpx;
  392. }
  393. .timer {
  394. font-size: 28rpx;
  395. color: #666;
  396. }
  397. }
  398. .address {
  399. background-color: #fff;
  400. border-radius: 16rpx;
  401. padding: 34rpx 24rpx 28rpx;
  402. margin-top: 24rpx;
  403. .name-phone {
  404. display: flex;
  405. align-items: center;
  406. align-items: flex-end;
  407. .phone {
  408. font-size: 26rpx;
  409. color: #666;
  410. }
  411. }
  412. .address-detail {
  413. margin-top: 20rpx;
  414. font-size: 24rpx;
  415. color: #444;
  416. margin-left: 60rpx;
  417. }
  418. }
  419. .photo {
  420. background-color: #fff;
  421. border-radius: 16rpx;
  422. padding: 20rpx 20rpx;
  423. margin-top: 20rpx;
  424. ._weight {
  425. display: flex;
  426. justify-content: space-between;
  427. font-size: 26rpx;
  428. color: rgba(34, 34, 34, 0.8);
  429. margin-bottom: 32rpx;
  430. ._image {
  431. width: 160rpx;
  432. height: 90rpx;
  433. // background-color: #d8d8d8;
  434. border-radius: 4rpx;
  435. }
  436. }
  437. .photo-bottom {
  438. display: flex;
  439. justify-content: flex-end;
  440. align-items: center;
  441. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  442. padding-top: 24rpx;
  443. .price {
  444. color: #f83224;
  445. font-weight: 600;
  446. }
  447. ._text-1 {
  448. font-size: 26rpx;
  449. }
  450. }
  451. }
  452. .order {
  453. background-color: #fff;
  454. border-radius: 16rpx;
  455. color: rgba(54, 54, 54, 0.7);
  456. font-size: 28rpx;
  457. margin-top: 20rpx;
  458. padding: 20rpx 20rpx;
  459. .order-number {
  460. display: flex;
  461. justify-content: space-between;
  462. margin-bottom: 32rpx;
  463. }
  464. }
  465. .contact {
  466. padding: 20rpx 0;
  467. background-color: #fff;
  468. display: flex;
  469. justify-content: center;
  470. align-items: center;
  471. border-radius: 16rpx;
  472. margin-top: 20rpx;
  473. margin-bottom: 160rpx;
  474. }
  475. .footer {
  476. position: fixed;
  477. bottom: 0;
  478. left: 0;
  479. background-color: #fff;
  480. display: flex;
  481. justify-content: flex-end;
  482. align-items: center;
  483. padding-top: 20rpx;
  484. padding-bottom: 80rpx;
  485. height: 66rpx;
  486. width: 100%;
  487. .status-1 {
  488. background-color: #fff;
  489. border-radius: 34rpx;
  490. margin: 0;
  491. padding: 0;
  492. font-size: 28rpx;
  493. color: #222;
  494. width: 168rpx;
  495. height: 68rpx;
  496. margin-right: 20rpx;
  497. border: 2rpx solid #979797;
  498. }
  499. .status-2 {
  500. background-color: #ffffff;
  501. border-radius: 34rpx;
  502. margin: 0;
  503. padding: 0;
  504. font-size: 28rpx;
  505. color: #f83224;
  506. width: 168rpx;
  507. height: 68rpx;
  508. border: 2rpx solid #f83224;
  509. margin-right: 24rpx;
  510. }
  511. }
  512. .transition {
  513. width: 164rpx;
  514. height: 88rpx;
  515. background: #ffffff;
  516. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  517. position: fixed;
  518. bottom: 160rpx;
  519. text-align: center;
  520. line-height: 88rpx;
  521. font-size: 26rpx;
  522. color: #222;
  523. }
  524. }
  525. </style>