supplyChainGoods.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view>
  3. <view class="top-tab-search">
  4. <u--input placeholder="搜索商品名称" shape="circle" prefixIcon="search"
  5. prefixIconStyle="font-size: 22px;color: #909399"></u--input>
  6. <view class="tab">
  7. <view class="top-tab">
  8. <view :class="{commodity:follow==1}" class="tab" @click="tabSwitch(1)">
  9. 全部
  10. </view>
  11. <view :class="{commodity:follow==2}" class="tab" @click="tabSwitch(2)">
  12. 已上架
  13. </view>
  14. <view :class="{commodity:follow==3}" class="tab" @click="tabSwitch(3)">
  15. 审核中
  16. </view>
  17. <view :class="{commodity:follow==4}" class="tab" @click="tabSwitch(4)">
  18. 审核失败
  19. </view>
  20. <view :class="{commodity:follow==5}" class="tab" @click="tabSwitch(5)">
  21. 已下架
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="page">
  27. <GoodsInformation productAndCommodity="product" :status="status" @toDetail="toDetail" />
  28. </view>
  29. <view class="footer">
  30. <button class="btn">添加供应链商品</button>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import GoodsInformation from '../components/goodsInformation.vue'
  36. export default {
  37. components: {
  38. GoodsInformation
  39. },
  40. data() {
  41. return {
  42. follow: 1,
  43. status: "1",
  44. }
  45. },
  46. computed: {
  47. i18n() {
  48. return this.$t("index")
  49. },
  50. },
  51. methods: {
  52. tabSwitch(num) {
  53. this.follow = num
  54. },
  55. toDetail(){
  56. uni.navigateTo({
  57. url:"/pageD/productDetails/productDetails"
  58. })
  59. },
  60. },
  61. mounted() {
  62. uni.setNavigationBarTitle({
  63. title: "我的供应链商品"
  64. })
  65. }
  66. }
  67. </script>
  68. <style lang="scss" scoped>
  69. .top-tab-search {
  70. background-color: #fff;
  71. padding: 10rpx 24rpx;
  72. .top-tab {
  73. margin-top: 10rpx;
  74. padding: 0 20rpx;
  75. display: flex;
  76. justify-content: space-between;
  77. .tab {
  78. font-size: 26rpx;
  79. color: rgba(34, 34, 34, .8);
  80. flex-shrink: 0;
  81. height: 44rpx;
  82. display: flex;
  83. align-items: flex-end;
  84. padding-bottom: 12rpx;
  85. }
  86. .commodity {
  87. position: relative;
  88. font-weight: 600;
  89. }
  90. .commodity::before {
  91. content: '';
  92. display: block;
  93. height: 4rpx;
  94. width: 50%;
  95. background: #f83224;
  96. position: absolute;
  97. bottom: -10rpx;
  98. opacity: 0.8;
  99. left: 50%;
  100. transform: translate(-50%, 50%);
  101. }
  102. }
  103. }
  104. .page {
  105. padding: 20rpx 24rpx;
  106. }
  107. .footer{
  108. position: fixed;
  109. bottom: 0;
  110. background-color: #fff;
  111. width: 100%;
  112. padding:16rpx 24rpx 70rpx 24rpx;
  113. .btn{
  114. border-radius: 52rpx;
  115. background-color: #f83224;
  116. color: #fff;
  117. border: none;
  118. padding: 0;
  119. margin: 0;
  120. width: 94%;
  121. font-size: 30rpx;
  122. }
  123. }
  124. </style>