orderFormManage.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <view class="page">
  3. <view class="tab-1" slot="center">
  4. <u--input
  5. style="background-color: #f4f4f4"
  6. placeholder="搜索订单号/手机号/商品/姓名"
  7. shape="circle"
  8. prefixIcon="search"
  9. prefixIconStyle="font-size: 22px;color: #909399"
  10. ></u--input>
  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 == 'unreview' }"
  21. class="tab"
  22. @click="tabSwitch('unreview')"
  23. >
  24. 待审核
  25. </view>
  26. <view
  27. :class="{ commodity: follow == 'unfill' }"
  28. class="tab"
  29. @click="tabSwitch('unfill')"
  30. >
  31. 待缴纳保证金
  32. </view>
  33. <view
  34. :class="{ commodity: follow == 'merdelivered' }"
  35. class="tab"
  36. @click="tabSwitch('merdelivered')"
  37. >
  38. 待团长发货
  39. </view>
  40. <view
  41. :class="{ commodity: follow == 'undelivered' }"
  42. class="tab"
  43. @click="tabSwitch('undelivered')"
  44. >
  45. 待总部发货
  46. </view>
  47. <view
  48. :class="{ commodity: follow == 'delivered' }"
  49. class="tab"
  50. @click="tabSwitch('delivered')"
  51. >
  52. 已发货
  53. </view>
  54. </view>
  55. </view>
  56. <view class="center">
  57. <view v-for="item in orderList" :key="item.status">
  58. <DetailCard :itemInfo="item" @toInformation="toInformation" />
  59. </view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. import DetailCard from "./component/detailCard.vue";
  65. export default {
  66. components: {
  67. DetailCard,
  68. },
  69. data() {
  70. return {
  71. follow: "",
  72. orderList: [],
  73. page: 1,
  74. };
  75. },
  76. onShow() {
  77. this.getGoodsList();
  78. },
  79. methods: {
  80. tabSwitch(num) {
  81. this.follow = num;
  82. this.getGoodsList();
  83. },
  84. toInformation(item) {
  85. if (item.status == "unreview") return;
  86. uni.navigateTo({
  87. url: `/pageD/orderDetail/orderDetail?orderStatus=${item.id}&status=${item.status}`,
  88. });
  89. },
  90. //获取订单列表
  91. getGoodsList() {
  92. uni.$u.http
  93. .post(`/api/order/merchant_order`, {
  94. page: this.page,
  95. limit: 10,
  96. status: this.follow,
  97. })
  98. .then((res) => {
  99. this.orderList = res.data;
  100. });
  101. },
  102. },
  103. computed: {
  104. i18n() {
  105. return this.$t("index");
  106. },
  107. },
  108. mounted() {
  109. uni.setNavigationBarTitle({
  110. title: "订单管理",
  111. });
  112. },
  113. };
  114. </script>
  115. <style scoped lang="scss">
  116. .page {
  117. .tab-1 {
  118. padding: 0 24rpx;
  119. background-color: #fff;
  120. ::v-deep .u-input {
  121. background-color: #f4f4f4;
  122. }
  123. .top-tab {
  124. margin-top: 20rpx;
  125. display: flex;
  126. justify-content: space-between;
  127. overflow-y: auto;
  128. padding-bottom: 10rpx;
  129. // flex-shrink: 1;
  130. // width: 100vw;
  131. .tab {
  132. margin-right: 40rpx;
  133. font-size: 26rpx;
  134. color: rgba(34, 34, 34, 0.8);
  135. flex-shrink: 0;
  136. height: 44rpx;
  137. display: flex;
  138. align-items: flex-end;
  139. }
  140. .commodity {
  141. position: relative;
  142. font-weight: 600;
  143. font-size: 32rpx;
  144. }
  145. .commodity::before {
  146. content: "";
  147. display: block;
  148. height: 8rpx;
  149. width: 100%;
  150. background: linear-gradient(to right, #f83224, #fff);
  151. position: absolute;
  152. bottom: 5rpx;
  153. opacity: 0.8;
  154. }
  155. }
  156. }
  157. .center {
  158. padding: 20rpx 24rpx;
  159. }
  160. }
  161. </style>