orderForm.vue 6.7 KB

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