orderFormDetail.vue 12 KB

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