supplyChainGoods.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <template>
  2. <view>
  3. <view class="top-tab-search">
  4. <u--input
  5. placeholder="搜索商品名称"
  6. shape="circle"
  7. prefixIcon="search"
  8. prefixIconStyle="font-size: 22px;color: #909399"
  9. ></u--input>
  10. <view class="tab">
  11. <view class="top-tab">
  12. <view
  13. :class="{ commodity: follow == 'null' }"
  14. class="tab"
  15. @click="tabSwitch('null')"
  16. >
  17. 全部
  18. </view>
  19. <view
  20. :class="{ commodity: follow == 'normal' }"
  21. class="tab"
  22. @click="tabSwitch('normal')"
  23. >
  24. 已上架
  25. </view>
  26. <view
  27. :class="{ commodity: follow == 7 }"
  28. class="tab"
  29. @click="tabSwitch(7)"
  30. >
  31. 审核中
  32. </view>
  33. <view
  34. :class="{ commodity: follow == 2 }"
  35. class="tab"
  36. @click="tabSwitch(2)"
  37. >
  38. 审核失败
  39. </view>
  40. <view
  41. :class="{ commodity: follow == 'down' }"
  42. class="tab"
  43. @click="tabSwitch('down')"
  44. >
  45. 已下架
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. <view class="page">
  51. <view v-for="item in goodsList" :key="item.id">
  52. <GoodsInformation
  53. productAndCommodity="product"
  54. :status="status"
  55. @toDetail="toDetail"
  56. :itemInfo="item"
  57. />
  58. </view>
  59. </view>
  60. <!-- <view class="footer">
  61. <button class="btn">添加供应链商品</button>
  62. </view> -->
  63. </view>
  64. </template>
  65. <script>
  66. import GoodsInformation from "../components/goodsInformation.vue";
  67. export default {
  68. components: {
  69. GoodsInformation,
  70. },
  71. data() {
  72. return {
  73. follow: "null",
  74. status: "null",
  75. page: 1,
  76. goodsList: [],
  77. reviewStatus: "",
  78. productStatus: "",
  79. };
  80. },
  81. computed: {
  82. i18n() {
  83. return this.$t("index");
  84. },
  85. },
  86. methods: {
  87. tabSwitch(num) {
  88. this.follow = num;
  89. //num类型为数字时,搜索审核中的商品,为字符串是搜索审核完成的商品
  90. if (typeof num == "number") {
  91. this.reviewStatus = num;
  92. this.productStatus = "";
  93. } else {
  94. this.productStatus = num;
  95. this.reviewStatus = "";
  96. }
  97. this.getinfoList();
  98. },
  99. //跳转商品详情
  100. toDetail(value) {
  101. uni.navigateTo({
  102. url: `/pageD/productDetails/productDetails?goodsId=${value.id}&pageStatus=platform`,
  103. });
  104. },
  105. //获取供应链商品列表
  106. getinfoList() {
  107. let api;
  108. //判断字段存不存在,存在则向后端传输该字段,不存在则不传输
  109. if (this.productStatus) {
  110. api = `/api/goods/catena_goods?page=${this.page}&limit=10&status=${this.productStatus}`;
  111. } else if (this.reviewStatus) {
  112. api = `/api/goods/catena_goods?page=${
  113. this.page
  114. }&limit=10&review_status=${
  115. this.reviewStatus == 7 ? "0" : this.reviewStatus
  116. }`;
  117. } else {
  118. api = `/api/goods/catena_goods?page=${this.page}&limit=10`;
  119. }
  120. uni.$u.http.get(api).then((res) => {
  121. this.goodsList = res.data;
  122. });
  123. },
  124. },
  125. mounted() {
  126. this.getinfoList();
  127. uni.setNavigationBarTitle({
  128. title: "我的供应链商品",
  129. });
  130. },
  131. };
  132. </script>
  133. <style lang="scss" scoped>
  134. .top-tab-search {
  135. background-color: #fff;
  136. padding: 10rpx 24rpx;
  137. .top-tab {
  138. margin-top: 10rpx;
  139. padding: 0 20rpx;
  140. display: flex;
  141. justify-content: space-between;
  142. .tab {
  143. font-size: 26rpx;
  144. color: rgba(34, 34, 34, 0.8);
  145. flex-shrink: 0;
  146. height: 44rpx;
  147. display: flex;
  148. align-items: flex-end;
  149. padding-bottom: 12rpx;
  150. }
  151. .commodity {
  152. position: relative;
  153. font-weight: 600;
  154. }
  155. .commodity::before {
  156. content: "";
  157. display: block;
  158. height: 4rpx;
  159. width: 50%;
  160. background: #f83224;
  161. position: absolute;
  162. bottom: -10rpx;
  163. opacity: 0.8;
  164. left: 50%;
  165. transform: translate(-50%, 50%);
  166. }
  167. }
  168. }
  169. .page {
  170. padding: 20rpx 24rpx;
  171. }
  172. .footer {
  173. position: fixed;
  174. bottom: 0;
  175. background-color: #fff;
  176. width: 100%;
  177. padding: 16rpx 24rpx 70rpx 24rpx;
  178. .btn {
  179. border-radius: 52rpx;
  180. background-color: #f83224;
  181. color: #fff;
  182. border: none;
  183. padding: 0;
  184. margin: 0;
  185. width: 94%;
  186. font-size: 30rpx;
  187. }
  188. }
  189. </style>