orderFormManage.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. <Remark :show="remarkShow" @remarkClose="remarkClose" />
  62. </view>
  63. </template>
  64. <script>
  65. import DetailCard from "./component/detailCard.vue";
  66. import Remark from "../components/remark.vue";
  67. export default {
  68. components: {
  69. DetailCard,
  70. Remark,
  71. },
  72. data() {
  73. return {
  74. follow: "",
  75. orderList: [],
  76. page: 1,
  77. remarkShow: false,
  78. };
  79. },
  80. onShow() {
  81. this.getGoodsList();
  82. },
  83. methods: {
  84. tabSwitch(num) {
  85. this.follow = num;
  86. this.getGoodsList();
  87. },
  88. //关闭备注弹框
  89. remarkClose(value) {
  90. this.remarkShow = false;
  91. console.log(this.remarkShow);
  92. //没有接口,有接口再补充
  93. if (value) {
  94. }
  95. },
  96. toInformation(item) {
  97. if (item.status == "unreview") return;
  98. uni.navigateTo({
  99. url: `/pageD/orderDetail/orderDetail?orderStatus=${item.id}&status=${item.status}`,
  100. });
  101. },
  102. //获取订单列表
  103. getGoodsList() {
  104. uni.$u.http
  105. .post(`/api/order/merchant_order`, {
  106. page: this.page,
  107. limit: 10,
  108. status: this.follow,
  109. })
  110. .then((res) => {
  111. this.orderList = res.data;
  112. });
  113. },
  114. },
  115. computed: {
  116. i18n() {
  117. return this.$t("index");
  118. },
  119. },
  120. mounted() {
  121. uni.setNavigationBarTitle({
  122. title: "订单管理",
  123. });
  124. },
  125. };
  126. </script>
  127. <style scoped lang="scss">
  128. .page {
  129. .tab-1 {
  130. padding: 0 24rpx;
  131. background-color: #fff;
  132. ::v-deep .u-input {
  133. background-color: #f4f4f4;
  134. }
  135. .top-tab {
  136. margin-top: 20rpx;
  137. display: flex;
  138. justify-content: space-between;
  139. overflow-y: auto;
  140. padding-bottom: 10rpx;
  141. // flex-shrink: 1;
  142. // width: 100vw;
  143. .tab {
  144. margin-right: 40rpx;
  145. font-size: 26rpx;
  146. color: rgba(34, 34, 34, 0.8);
  147. flex-shrink: 0;
  148. height: 44rpx;
  149. display: flex;
  150. align-items: flex-end;
  151. }
  152. .commodity {
  153. position: relative;
  154. font-weight: 600;
  155. font-size: 32rpx;
  156. }
  157. .commodity::before {
  158. content: "";
  159. display: block;
  160. height: 8rpx;
  161. width: 100%;
  162. background: linear-gradient(to right, #f83224, #fff);
  163. position: absolute;
  164. bottom: 5rpx;
  165. opacity: 0.8;
  166. }
  167. }
  168. }
  169. .center {
  170. padding: 20rpx 24rpx;
  171. }
  172. }
  173. </style>