supplyChainGoods.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. @goodsUpDown="goodsUpDown"
  58. />
  59. </view>
  60. </view>
  61. <!-- <view class="footer">
  62. <button class="btn">添加供应链商品</button>
  63. </view> -->
  64. </view>
  65. </template>
  66. <script>
  67. import GoodsInformation from "../components/goodsInformation.vue";
  68. export default {
  69. components: {
  70. GoodsInformation,
  71. },
  72. data() {
  73. return {
  74. follow: "null",
  75. status: "null",
  76. page: 1,
  77. goodsList: [],
  78. reviewStatus: "",
  79. productStatus: "",
  80. };
  81. },
  82. computed: {
  83. i18n() {
  84. return this.$t("index");
  85. },
  86. },
  87. methods: {
  88. tabSwitch(num) {
  89. this.follow = num;
  90. //num类型为数字时,搜索审核中的商品,为字符串是搜索审核完成的商品
  91. if (typeof num == "number") {
  92. this.reviewStatus = num;
  93. this.productStatus = "";
  94. } else {
  95. this.productStatus = num;
  96. this.reviewStatus = "";
  97. }
  98. this.getinfoList();
  99. },
  100. //跳转商品详情
  101. toDetail(value) {
  102. uni.navigateTo({
  103. url: `/pageD/productDetails/productDetails?goodsId=${value.id}&pageStatus=supply`,
  104. });
  105. },
  106. //获取供应链商品列表
  107. getinfoList() {
  108. let api;
  109. //判断字段存不存在,存在则向后端传输该字段,不存在则不传输
  110. if (this.productStatus) {
  111. api = `/api/goods/catena_goods?page=${this.page}&limit=10&status=${this.productStatus}`;
  112. } else if (this.reviewStatus) {
  113. api = `/api/goods/catena_goods?page=${
  114. this.page
  115. }&limit=10&review_status=${
  116. this.reviewStatus == 7 ? "0" : this.reviewStatus
  117. }`;
  118. } else {
  119. api = `/api/goods/catena_goods?page=${this.page}&limit=10`;
  120. }
  121. uni.$u.http.get(api).then((res) => {
  122. this.goodsList = res.data;
  123. });
  124. },
  125. //商品上架,下架
  126. goodsUpDown(value, item) {
  127. // uni.#u.http.post(``)
  128. },
  129. },
  130. mounted() {
  131. this.getinfoList();
  132. uni.setNavigationBarTitle({
  133. title: "我的供应链商品",
  134. });
  135. },
  136. };
  137. </script>
  138. <style lang="scss" scoped>
  139. .top-tab-search {
  140. background-color: #fff;
  141. padding: 10rpx 24rpx;
  142. .top-tab {
  143. margin-top: 10rpx;
  144. padding: 0 20rpx;
  145. display: flex;
  146. justify-content: space-between;
  147. .tab {
  148. font-size: 26rpx;
  149. color: rgba(34, 34, 34, 0.8);
  150. flex-shrink: 0;
  151. height: 44rpx;
  152. display: flex;
  153. align-items: flex-end;
  154. padding-bottom: 12rpx;
  155. }
  156. .commodity {
  157. position: relative;
  158. font-weight: 600;
  159. }
  160. .commodity::before {
  161. content: "";
  162. display: block;
  163. height: 4rpx;
  164. width: 50%;
  165. background: #f83224;
  166. position: absolute;
  167. bottom: -10rpx;
  168. opacity: 0.8;
  169. left: 50%;
  170. transform: translate(-50%, 50%);
  171. }
  172. }
  173. }
  174. .page {
  175. padding: 20rpx 24rpx;
  176. }
  177. .footer {
  178. position: fixed;
  179. bottom: 0;
  180. background-color: #fff;
  181. width: 100%;
  182. padding: 16rpx 24rpx 70rpx 24rpx;
  183. .btn {
  184. border-radius: 52rpx;
  185. background-color: #f83224;
  186. color: #fff;
  187. border: none;
  188. padding: 0;
  189. margin: 0;
  190. width: 94%;
  191. font-size: 30rpx;
  192. }
  193. }
  194. </style>