orderFormDetail.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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.status == 'paid' || orderDetail.status == 'merdelivered'
  24. "
  25. >
  26. 已付款,等待发货
  27. </view>
  28. <view
  29. class="payment"
  30. v-else-if="orderDetail.simplify_status == 'delivered'"
  31. >
  32. 已发货,等待收货
  33. </view>
  34. <view
  35. class="payment"
  36. v-else-if="orderDetail.simplify_status == 'finished'"
  37. >
  38. 订单已完成,交易成功
  39. </view>
  40. </view>
  41. <!-- 订单状态 -->
  42. <!-- 地址信息 -->
  43. <view class="address">
  44. <view class="name-phone">
  45. <u-icon name="map" size="22"></u-icon>
  46. <view style="margin: 0 20rpx; font-size: 32rpx">{{
  47. orderDetail.address_name
  48. }}</view>
  49. <text class="phone">{{ orderDetail.address_mobile }}</text>
  50. </view>
  51. <view class="address-detail">
  52. {{ orderDetail.full_address }}
  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.status == 'paid' ||
  71. orderDetail.status == 'merdelivered' ||
  72. orderDetail.simplify_status == 'finished' ||
  73. orderDetail.simplify_status == 'delivered'
  74. "
  75. >
  76. <text> 支付方式 </text>
  77. <view> {{ orderDetail.pay_type_name }} </view>
  78. </view>
  79. <view
  80. class="order-number"
  81. v-if="
  82. orderDetail.simplify_status == 'unreview' ||
  83. orderDetail.status == 'paid' ||
  84. orderDetail.simplify_status == 'finished' ||
  85. orderDetail.simplify_status == 'undelivered' ||
  86. orderDetail.simplify_status == 'delivered'
  87. "
  88. >
  89. <text> 支付时间 </text>
  90. <view> {{ orderDetail.paid_at }} </view>
  91. </view>
  92. <view class="order-number">
  93. <text> 下单时间 </text>
  94. <view>{{ orderDetail.created_at }} </view>
  95. </view>
  96. </view>
  97. <view
  98. class="contact"
  99. v-if="
  100. orderDetail.status == 'unpaid' ||
  101. orderDetail.status == 'paid' ||
  102. orderDetail.status != 'merdelivered' ||
  103. orderDetail.simplify_status == 'undelivered'
  104. "
  105. >
  106. 联系团长
  107. </view>
  108. <view
  109. class="footer"
  110. v-if="
  111. orderDetail.status != 'paid' && orderDetail.status != 'merdelivered'
  112. "
  113. >
  114. <button
  115. class="status-1"
  116. v-if="
  117. orderDetail.status == 'unpaid' ||
  118. orderDetail.simplify_status == 'unreview'
  119. "
  120. @click="cancelOrder"
  121. >
  122. 取消订单
  123. </button>
  124. <button class="status-2" v-if="orderDetail.status == 'unpaid'">
  125. 继续付款
  126. </button>
  127. <button
  128. class="status-1"
  129. v-if="orderDetail.status == 'closed' || status == 3 || status == 4"
  130. >
  131. 删除订单
  132. </button>
  133. <button
  134. class="status-2"
  135. v-if="orderDetail.status == 'closed' || status == 3 || status == 4"
  136. >
  137. 再次购买
  138. </button>
  139. <button
  140. class="status-1"
  141. v-if="orderDetail.simplify_status == 'delivered'"
  142. >
  143. 查看物流
  144. </button>
  145. <button
  146. class="status-2"
  147. v-if="orderDetail.simplify_status == 'delivered'"
  148. @click="confirmReceipt"
  149. >
  150. 确认收货
  151. </button>
  152. <view
  153. style="margin-right: 40rpx; color: #777; font-size: 28rpx"
  154. v-if="orderDetail.simplify_status == 'finished'"
  155. @click="more"
  156. >更多</view
  157. >
  158. <button class="status-1" v-if="orderDetail.simplify_status == 'finished'">
  159. 查看物流
  160. </button>
  161. <button class="status-1" v-if="orderDetail.simplify_status == 'finished'">
  162. 再来一单
  163. </button>
  164. <button
  165. class="status-2"
  166. v-if="orderDetail.simplify_status == 'finished'"
  167. @click.stop="toEvaluate"
  168. >
  169. 评价
  170. </button>
  171. </view>
  172. <u-transition :show="show">
  173. <view class="transition">删除订单</view>
  174. </u-transition>
  175. <agreePopup title="是否确认收货" :agreeShow="agreeShow" @close="close" />
  176. </view>
  177. </template>
  178. <script>
  179. import commodityDetailVue from "./component/commodityDetail.vue";
  180. import agreePopup from "../mineComponent/agreePopup.vue";
  181. export default {
  182. components: {
  183. commodityDetailVue,
  184. agreePopup,
  185. },
  186. data() {
  187. return {
  188. status: 6,
  189. show: false,
  190. orderDetail: {},
  191. agreeShow: false,
  192. };
  193. },
  194. methods: {
  195. //复制
  196. cope(e) {
  197. uni.setClipboardData({
  198. data: e,
  199. success() {
  200. uni.showToast({
  201. title: "复制成功",
  202. icon: "none",
  203. });
  204. },
  205. });
  206. },
  207. //跳转评论
  208. toEvaluate() {
  209. uni.navigateTo({
  210. url: `/pageD/evaluate/evaluate?orderId=${this.orderDetail.id}`,
  211. });
  212. },
  213. more() {
  214. this.show = true;
  215. },
  216. //确认收货
  217. confirmReceipt() {
  218. this.agreeShow = true;
  219. // uni.$u.http
  220. // .post(`/api/order/receive/${this.orderDetail.id}`)
  221. // .then((res) => {});
  222. },
  223. //value为true时,确认收货
  224. close(value) {
  225. if (value) {
  226. uni.$u.http
  227. .post(`/api/order/receive/${this.orderDetail.id}`)
  228. .then((res) => {
  229. this.agreeShow = false;
  230. this.getDetail();
  231. uni.showToast({
  232. title: "订单已确认收货",
  233. icon: "none",
  234. });
  235. });
  236. } else {
  237. this.agreeShow = false;
  238. }
  239. },
  240. closeShow(e) {
  241. if (
  242. e._relatedInfo.anchorTargetText != "更多" &&
  243. e._relatedInfo.anchorTargetText != "删除订单"
  244. ) {
  245. this.show = false;
  246. }
  247. },
  248. //取消订单
  249. cancelOrder() {
  250. uni.$u.http
  251. .post(`/api/order/cancel/${this.orderDetail.id}`)
  252. .then((res) => {
  253. this.getDetail();
  254. uni.showToast({
  255. title: "已取消",
  256. icon: "none",
  257. });
  258. });
  259. },
  260. getDetail() {
  261. uni.$u.http.get(`/api/order/read?id=${this.status}`).then((res) => {
  262. this.orderDetail = res;
  263. });
  264. },
  265. },
  266. created() {},
  267. mounted() {
  268. this.getDetail();
  269. },
  270. onLoad(option) {
  271. this.status = option.orderId;
  272. },
  273. };
  274. </script>
  275. <style scoped lang="scss">
  276. .page {
  277. padding: 20rpx 24rpx 180rpx;
  278. .title {
  279. .payment {
  280. font-size: 44rpx;
  281. font-weight: 600;
  282. margin-bottom: 20rpx;
  283. }
  284. .timer {
  285. font-size: 28rpx;
  286. color: #666;
  287. }
  288. }
  289. .address {
  290. background-color: #fff;
  291. border-radius: 16rpx;
  292. padding: 34rpx 24rpx 28rpx;
  293. margin-top: 24rpx;
  294. .name-phone {
  295. display: flex;
  296. align-items: center;
  297. align-items: flex-end;
  298. .phone {
  299. font-size: 26rpx;
  300. color: #666;
  301. }
  302. }
  303. .address-detail {
  304. margin-top: 20rpx;
  305. font-size: 24rpx;
  306. color: #444;
  307. margin-left: 60rpx;
  308. }
  309. }
  310. .order {
  311. background-color: #fff;
  312. border-radius: 16rpx;
  313. color: rgba(54, 54, 54, 0.7);
  314. font-size: 28rpx;
  315. margin-top: 20rpx;
  316. padding: 20rpx 20rpx;
  317. .order-number {
  318. display: flex;
  319. justify-content: space-between;
  320. margin-bottom: 32rpx;
  321. }
  322. }
  323. .contact {
  324. padding: 20rpx 0;
  325. background-color: #fff;
  326. display: flex;
  327. justify-content: center;
  328. align-items: center;
  329. border-radius: 16rpx;
  330. margin-top: 20rpx;
  331. margin-bottom: 160rpx;
  332. }
  333. .footer {
  334. position: fixed;
  335. bottom: 0;
  336. left: 0;
  337. background-color: #fff;
  338. display: flex;
  339. justify-content: flex-end;
  340. align-items: center;
  341. padding-top: 20rpx;
  342. padding-bottom: 80rpx;
  343. height: 66rpx;
  344. width: 100%;
  345. .status-1 {
  346. background-color: #fff;
  347. border-radius: 34rpx;
  348. margin: 0;
  349. padding: 0;
  350. font-size: 28rpx;
  351. color: #222;
  352. width: 168rpx;
  353. height: 68rpx;
  354. margin-right: 20rpx;
  355. border: 2rpx solid #979797;
  356. }
  357. .status-2 {
  358. background-color: #ffffff;
  359. border-radius: 34rpx;
  360. margin: 0;
  361. padding: 0;
  362. font-size: 28rpx;
  363. color: #f83224;
  364. width: 168rpx;
  365. height: 68rpx;
  366. border: 2rpx solid #f83224;
  367. margin-right: 24rpx;
  368. }
  369. }
  370. .transition {
  371. width: 164rpx;
  372. height: 88rpx;
  373. background: #ffffff;
  374. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  375. position: fixed;
  376. bottom: 160rpx;
  377. text-align: center;
  378. line-height: 88rpx;
  379. font-size: 26rpx;
  380. color: #222;
  381. }
  382. }
  383. </style>