orderForm.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <view>
  3. <u-navbar @leftClick="rightClick" bgColor="#f4f4f4" :autoBack="true">
  4. <view class="tab" slot="center">
  5. <view style="width: 600rpx">
  6. <input type="text" placeholder="搜索我的订单" class="inp" />
  7. </view>
  8. </view>
  9. </u-navbar>
  10. <view class="content">
  11. <view class="top-tab">
  12. <view
  13. :class="{ commodity: follow == '' }"
  14. class="tab"
  15. @click="tabSwitch('')"
  16. >
  17. 全部
  18. </view>
  19. <view
  20. :class="{ commodity: follow == 'unpaid' }"
  21. class="tab"
  22. @click="tabSwitch('unpaid')"
  23. >
  24. 待付款
  25. </view>
  26. <view
  27. :class="{ commodity: follow == 'unreview' }"
  28. class="tab"
  29. @click="tabSwitch('unreview')"
  30. >
  31. 拼团中
  32. </view>
  33. <view
  34. :class="{ commodity: follow == 'undelivered' }"
  35. class="tab"
  36. @click="tabSwitch('undelivered')"
  37. >
  38. 待发货
  39. </view>
  40. <view
  41. :class="{ commodity: follow == 'delivered' }"
  42. class="tab"
  43. @click="tabSwitch('delivered')"
  44. >
  45. 待收货
  46. </view>
  47. <view
  48. :class="{ commodity: follow == 'finished' }"
  49. class="tab"
  50. @click="tabSwitch('finished')"
  51. >
  52. 已完成
  53. </view>
  54. <view
  55. :class="{ commodity: follow == 'refund' }"
  56. class="tab"
  57. @click="tabSwitch('refund')"
  58. >
  59. 退款/售后
  60. </view>
  61. </view>
  62. <view v-for="(item, index) in orderList" :key="index">
  63. <view v-if="follow != 'refund'">
  64. <OrderInofrmation
  65. :itemInfo="item"
  66. @toDetail="toDetail"
  67. @cancellationOrder="cancellationOrder"
  68. @confirm="confirm"
  69. @toPay="toPay"
  70. @toEvaluate="toEvaluate"
  71. />
  72. </view>
  73. <view v-else>
  74. <RefundCard
  75. :itemInfo="item"
  76. :refundDetail="refundDetail"
  77. @toRefundDetail="toRefundDetail"
  78. />
  79. </view>
  80. </view>
  81. </view>
  82. <AgreePopup :agreeShow="agreeShow" @close="close" :title="title" />
  83. </view>
  84. </template>
  85. <script>
  86. import OrderInofrmation from "./component/orderInofrmation.vue";
  87. import RefundCard from "./component/refundCard.vue";
  88. import AgreePopup from "../mineComponent/agreePopup.vue";
  89. export default {
  90. components: {
  91. OrderInofrmation,
  92. RefundCard,
  93. AgreePopup,
  94. },
  95. data() {
  96. return {
  97. orderList: [],
  98. follow: "",
  99. refundDetail: {
  100. status: 1,
  101. },
  102. page: 1,
  103. total: 0,
  104. status: "",
  105. agreeShow: false,
  106. title: "",
  107. cancellation: {},
  108. };
  109. },
  110. computed: {
  111. i18n() {
  112. return this.$t("index");
  113. },
  114. },
  115. onLoad(option) {
  116. this.follow = option.followId;
  117. },
  118. methods: {
  119. rightClick() {
  120. console.log(111);
  121. },
  122. //切换搜索订单状态
  123. tabSwitch(num) {
  124. this.page = 1;
  125. this.follow = num;
  126. this.getOrderList(1);
  127. },
  128. //跳转订单详情
  129. toDetail(value) {
  130. uni.navigateTo({
  131. url: `/pageC/orderFormDetail/orderFormDetail?orderId=${value.order.id}`,
  132. });
  133. },
  134. //跳转评价
  135. toEvaluate(value) {
  136. uni.navigateTo({
  137. url: `/pageD/evaluate/evaluate?orderId=${value.order.id}`,
  138. });
  139. },
  140. //确认收货
  141. confirm(value) {
  142. this.agreeShow = true;
  143. this.title = "是否确认收货";
  144. this.cancellation = value;
  145. },
  146. //跳转支付
  147. toPay(value) {
  148. uni.navigateTo({
  149. url: `/pageA/payorder?sum=${value.order.amount}&orderid=${value.order.id}`,
  150. });
  151. },
  152. //关闭确认弹窗
  153. close(value) {
  154. this.agreeShow = false;
  155. if (value) {
  156. if (this.title == "是否确认取消订单") {
  157. uni.$u.http
  158. .post(`/api/order/cancel/${this.cancellation.order.id}`)
  159. .then((res) => {
  160. uni.showToast({
  161. title: "订单已取消",
  162. icon: "none",
  163. });
  164. this.getOrderList(1);
  165. });
  166. } else if (this.title == "是否确认收货") {
  167. uni.$u.http
  168. .post(`/api/order/receive/${this.cancellation.order.id}`)
  169. .then((res) => {
  170. uni.showToast({
  171. title: "订单已收货",
  172. icon: "none",
  173. });
  174. this.getOrderList(1);
  175. });
  176. }
  177. }
  178. },
  179. //取消订单
  180. cancellationOrder(item) {
  181. this.agreeShow = true;
  182. this.cancellation = item;
  183. this.title = "是否确认取消订单";
  184. // uni.$u.http.post(`/api/order/cancel/${item.order.id}`).then((res) => {
  185. // console.log(res);
  186. // });
  187. },
  188. //售后订单详情
  189. toRefundDetail(value) {
  190. uni.navigateTo({
  191. url: `/pageC/refundDetail/refundDetail?orderId=${value.refund.id}`,
  192. });
  193. },
  194. getOrderList(value) {
  195. uni.$u.http
  196. .get(
  197. `/api/order/order_list?status=${this.follow}&page=${this.page}&limit=10`
  198. )
  199. .then((res) => {
  200. //确定是触底还是点击tab栏
  201. if (value) {
  202. this.orderList = res.data;
  203. } else {
  204. if (this.orderList.length == 0) {
  205. this.orderList = res.data;
  206. } else {
  207. this.orderList = this.orderList.concat(res.data);
  208. }
  209. }
  210. this.total = res.total;
  211. });
  212. },
  213. },
  214. onReachBottom() {
  215. //商品总数量小于当前获取到的商品数量
  216. if (this.total > this.orderList.length) {
  217. this.page++;
  218. this.getOrderList(0);
  219. }
  220. },
  221. mounted() {
  222. this.getOrderList(0);
  223. },
  224. };
  225. </script>
  226. <style lang="scss" scoped>
  227. .inp {
  228. background-color: #fff;
  229. border-radius: 40rpx;
  230. width: 402rpx;
  231. padding: 0 20rpx;
  232. height: 68rpx;
  233. }
  234. .content {
  235. padding: 0 24rpx 50rpx;
  236. }
  237. .top-tab {
  238. margin-top: 180rpx;
  239. display: flex;
  240. justify-content: space-between;
  241. overflow-y: auto;
  242. // flex-shrink: 1;
  243. width: 100vw;
  244. .tab {
  245. margin-right: 40rpx;
  246. font-size: 26rpx;
  247. color: rgba(34, 34, 34, 0.8);
  248. flex-shrink: 0;
  249. height: 44rpx;
  250. display: flex;
  251. align-items: flex-end;
  252. }
  253. .commodity {
  254. position: relative;
  255. font-weight: 600;
  256. font-size: 32rpx;
  257. }
  258. .commodity::before {
  259. content: "";
  260. display: block;
  261. height: 8rpx;
  262. width: 100%;
  263. background: linear-gradient(to right, #f83224, #fff);
  264. position: absolute;
  265. bottom: 5rpx;
  266. opacity: 0.8;
  267. }
  268. }
  269. </style>