orderFormDetail.vue 11 KB

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