commodityManage.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <template>
  2. <view>
  3. <view class="top-tab-search">
  4. <view class="search">
  5. <u--input placeholder="搜索商品名称" shape="circle" prefixIcon="search"
  6. prefixIconStyle="font-size: 22px;color: #909399"></u--input>
  7. <view class="screen" @click="openPopup">
  8. 筛选
  9. <image class="screen-icon" src="../../static/mine/334.png" mode=""></image>
  10. </view>
  11. </view>
  12. <view class="tab">
  13. <view class="top-tab">
  14. <view :class="{commodity:follow==1}" class="tab" @click="tabSwitch(1)">
  15. 全部
  16. </view>
  17. <view :class="{commodity:follow==2}" class="tab" @click="tabSwitch(2)">
  18. 已上架
  19. </view>
  20. <view :class="{commodity:follow==3}" class="tab" @click="tabSwitch(3)">
  21. 已下架
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="page">
  27. <GoodsInformation productAndCommodity="commodity" :status="status" @toDetail="toDetail" />
  28. </view>
  29. <view class="footer">
  30. <view class="batch">
  31. 批量打折
  32. </view>
  33. <button class="btn-1">上架平台商品</button>
  34. </view>
  35. <ScreenPopup :show="show" @close="close" :follow='follow' />
  36. </view>
  37. </template>
  38. <script>
  39. import GoodsInformation from '../components/goodsInformation.vue'
  40. import ScreenPopup from './component/screenPopup.vue'
  41. export default {
  42. components: {
  43. GoodsInformation,
  44. ScreenPopup
  45. },
  46. data() {
  47. return {
  48. follow: 1,
  49. status: "1",
  50. show:false
  51. }
  52. },
  53. computed: {
  54. i18n() {
  55. return this.$t("index")
  56. },
  57. },
  58. methods: {
  59. tabSwitch(num) {
  60. this.follow = num
  61. },
  62. openPopup(){
  63. this.show = true
  64. },
  65. close(num) {
  66. this.show = false
  67. this.follow = num
  68. },
  69. toDetail() {
  70. uni.navigateTo({
  71. url: "/pageD/productDetails/productDetails"
  72. })
  73. },
  74. },
  75. mounted() {
  76. uni.setNavigationBarTitle({
  77. title: "我的供应链商品"
  78. })
  79. }
  80. }
  81. </script>
  82. <style lang="scss" scoped>
  83. .top-tab-search {
  84. background-color: #fff;
  85. padding: 10rpx 24rpx;
  86. z-index: 20174;
  87. .search{
  88. display: flex;
  89. align-items: center;
  90. .screen{
  91. display: flex;
  92. align-items: center;
  93. font-size: 26rpx;
  94. color: #333;
  95. margin-left: 20rpx;
  96. .screen-icon{
  97. width: 24rpx;
  98. height: 24rpx;
  99. margin-left: 5rpx;
  100. }
  101. }
  102. }
  103. .top-tab {
  104. margin-top: 10rpx;
  105. padding: 0 20rpx;
  106. display: flex;
  107. justify-content: space-between;
  108. .tab {
  109. font-size: 26rpx;
  110. color: rgba(34, 34, 34, .8);
  111. flex-shrink: 0;
  112. height: 44rpx;
  113. display: flex;
  114. align-items: flex-end;
  115. padding-bottom: 12rpx;
  116. }
  117. .commodity {
  118. position: relative;
  119. font-weight: 600;
  120. }
  121. .commodity::before {
  122. content: '';
  123. display: block;
  124. height: 4rpx;
  125. width: 50%;
  126. background: #f83224;
  127. position: absolute;
  128. bottom: -10rpx;
  129. opacity: 0.8;
  130. left: 50%;
  131. transform: translate(-50%, 50%);
  132. }
  133. }
  134. }
  135. .page {
  136. padding: 20rpx 24rpx;
  137. }
  138. .footer {
  139. position: fixed;
  140. display: flex;
  141. align-items: center;
  142. justify-content: space-between;
  143. bottom: 0;
  144. background-color: #fff;
  145. width: 93%;
  146. padding: 16rpx 24rpx 70rpx 24rpx;
  147. .batch{
  148. color: #333;
  149. font-size: 28rpx;
  150. margin-right: 50rpx;
  151. }
  152. .btn-1 {
  153. width: 236rpx;
  154. height: 76rpx;
  155. border-radius: 52rpx;
  156. background-color: #fff;
  157. color: #f83224;
  158. border: 2rpx solid #f83224;
  159. padding: 0;
  160. margin: 0;
  161. font-size: 30rpx;
  162. }
  163. .btn {
  164. width: 236rpx;
  165. height: 76rpx;
  166. border-radius: 52rpx;
  167. background-color: #f83224;
  168. color: #fff;
  169. border: none;
  170. padding: 0;
  171. margin: 0;
  172. font-size: 30rpx;
  173. }
  174. }
  175. </style>