orderForm.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 == 1 }"
  14. class="tab"
  15. @click="tabSwitch(1)"
  16. >
  17. 全部
  18. </view>
  19. <view
  20. :class="{ commodity: follow == 2 }"
  21. class="tab"
  22. @click="tabSwitch(2)"
  23. >
  24. 待付款
  25. </view>
  26. <view
  27. :class="{ commodity: follow == 3 }"
  28. class="tab"
  29. @click="tabSwitch(3)"
  30. >
  31. 拼团中
  32. </view>
  33. <view
  34. :class="{ commodity: follow == 4 }"
  35. class="tab"
  36. @click="tabSwitch(4)"
  37. >
  38. 待发货
  39. </view>
  40. <view
  41. :class="{ commodity: follow == 5 }"
  42. class="tab"
  43. @click="tabSwitch(5)"
  44. >
  45. 待收货
  46. </view>
  47. <view
  48. :class="{ commodity: follow == 6 }"
  49. class="tab"
  50. @click="tabSwitch(6)"
  51. >
  52. 已完成
  53. </view>
  54. <view
  55. :class="{ commodity: follow == 7 }"
  56. class="tab"
  57. @click="tabSwitch(7)"
  58. >
  59. 退款/售后
  60. </view>
  61. </view>
  62. <view v-for="item in orderList">
  63. <view v-if="follow != 7">
  64. <OrderInofrmation
  65. :itemInfo="item"
  66. @toDetail="toDetail"
  67. @cancellationOrder="cancellationOrder"
  68. />
  69. </view>
  70. <view v-else>
  71. <RefundCard
  72. :itemInfo="item"
  73. :refundDetail="refundDetail"
  74. @toRefundDetail="toRefundDetail"
  75. />
  76. </view>
  77. </view>
  78. <!-- <view v-for="item in orderList1" :key="item.id">
  79. <view v-if="follow != 7">
  80. <OrderInofrmation
  81. :itemInfo="item"
  82. @toDetail="toDetail"
  83. @cancellationOrder="cancellationOrder"
  84. />
  85. </view>
  86. <view v-else>
  87. <RefundCard
  88. :itemInfo="item"
  89. :refundDetail="refundDetail"
  90. @toRefundDetail="toRefundDetail"
  91. />
  92. </view>
  93. </view> -->
  94. </view>
  95. </view>
  96. </template>
  97. <script>
  98. import OrderInofrmation from "./component/orderInofrmation.vue";
  99. import RefundCard from "./component/refundCard.vue";
  100. export default {
  101. components: {
  102. OrderInofrmation,
  103. RefundCard,
  104. },
  105. data() {
  106. return {
  107. orderList: [
  108. {
  109. status: 3,
  110. },
  111. {
  112. status: 4,
  113. },
  114. {
  115. status: 5,
  116. },
  117. {
  118. status: 7,
  119. },
  120. {
  121. status: 8,
  122. },
  123. ],
  124. orderList1: [],
  125. follow: 1,
  126. refundDetail: {
  127. status: 1,
  128. },
  129. };
  130. },
  131. computed: {
  132. i18n() {
  133. return this.$t("index");
  134. },
  135. },
  136. onLoad(option) {
  137. this.follow = option.followId;
  138. },
  139. methods: {
  140. rightClick() {
  141. console.log(111);
  142. },
  143. //切换搜索订单状态
  144. tabSwitch(num) {
  145. this.follow = num;
  146. },
  147. //跳转订单详情
  148. toDetail(value) {
  149. uni.navigateTo({
  150. url: `/pageC/orderFormDetail/orderFormDetail?orderId=${value.status}`,
  151. });
  152. },
  153. //取消订单
  154. cancellationOrder(item) {
  155. uni.$u.http.post(`/api/order/cancel/${item.id}`).then((res) => {
  156. console.log(res);
  157. });
  158. },
  159. //售后订单详情
  160. toRefundDetail() {
  161. uni.navigateTo({
  162. url: "/pageC/refundDetail/refundDetail",
  163. });
  164. },
  165. getOrderList() {
  166. uni.$u.http
  167. .get(`/api/order/order_list?status=&page=1&limit=10`)
  168. .then((res) => {
  169. this.orderList = res.data;
  170. });
  171. },
  172. },
  173. mounted() {
  174. this.getOrderList();
  175. },
  176. };
  177. </script>
  178. <style lang="scss" scoped>
  179. .inp {
  180. background-color: #fff;
  181. border-radius: 40rpx;
  182. width: 402rpx;
  183. padding: 0 20rpx;
  184. height: 68rpx;
  185. }
  186. .content {
  187. padding: 0 24rpx 50rpx;
  188. }
  189. .top-tab {
  190. margin-top: 180rpx;
  191. display: flex;
  192. justify-content: space-between;
  193. overflow-y: auto;
  194. // flex-shrink: 1;
  195. width: 100vw;
  196. .tab {
  197. margin-right: 40rpx;
  198. font-size: 26rpx;
  199. color: rgba(34, 34, 34, 0.8);
  200. flex-shrink: 0;
  201. height: 44rpx;
  202. display: flex;
  203. align-items: flex-end;
  204. }
  205. .commodity {
  206. position: relative;
  207. font-weight: 600;
  208. font-size: 32rpx;
  209. }
  210. .commodity::before {
  211. content: "";
  212. display: block;
  213. height: 8rpx;
  214. width: 100%;
  215. background: linear-gradient(to right, #f83224, #fff);
  216. position: absolute;
  217. bottom: 5rpx;
  218. opacity: 0.8;
  219. }
  220. }
  221. </style>