screenPopup.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <view class="">
  3. <u-popup :show="show" :round="10" mode="top" @close="close">
  4. <view class="top-tab-search">
  5. <view class="search">
  6. <u--input placeholder="搜索商品名称" shape="circle" prefixIcon="search"
  7. prefixIconStyle="font-size: 22px;color: #909399"></u--input>
  8. <view class="screen" @click="openPopup">
  9. 筛选
  10. <image class="screen-icon" src="../../../static/mine/335.png" mode=""></image>
  11. </view>
  12. </view>
  13. <view class="tab">
  14. <view class="top-tab">
  15. <view :class="{commodity:followPopup==1}" class="tab" @click="tabSwitch(1)">
  16. 全部
  17. </view>
  18. <view :class="{commodity:followPopup==2}" class="tab" @click="tabSwitch(2)">
  19. 已上架
  20. </view>
  21. <view :class="{commodity:followPopup==3}" class="tab" @click="tabSwitch(3)">
  22. 已下架
  23. </view>
  24. </view>
  25. </view>
  26. <view class="btn-list">
  27. <view :class="{'select-tab':selectTab == 1}" @click="selected(1)">我的商品</view>
  28. <view :class="{'select-tab':selectTab == 2}" @click="selected(2)">供应链商品</view>
  29. <view :class="{'select-tab':selectTab == 3}" @click="selected(3)">平台自营商品</view>
  30. </view>
  31. <view class="reset-config">
  32. <button class="reset">重置</button><button class="config">确定</button>
  33. </view>
  34. </view>
  35. </u-popup>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. followPopup: 1,
  43. selectTab:1
  44. }
  45. },
  46. props: {
  47. follow: {
  48. typeof: Number,
  49. default: 1
  50. },
  51. show: {
  52. typeof: Boolean,
  53. default: false
  54. }
  55. },
  56. watch: {
  57. //监听横向tab栏的数据,同步父组件和子组件横向tab栏的状态
  58. follow(newVal) {
  59. this.followPopup = newVal
  60. }
  61. },
  62. methods: {
  63. //切换tab
  64. tabSwitch(num) {
  65. this.followPopup = num
  66. },
  67. //关闭弹窗,将数据传入如=父组件
  68. close() {
  69. this.$emit('close', this.followPopup)
  70. },
  71. //切换选中状态
  72. selected(num){
  73. this.selectTab = num
  74. }
  75. }
  76. }
  77. </script>
  78. <style scoped lang="scss">
  79. .top-tab-search {
  80. background-color: #fff;
  81. padding: 10rpx 24rpx;
  82. z-index: 20174;
  83. .search {
  84. display: flex;
  85. align-items: center;
  86. .screen {
  87. display: flex;
  88. align-items: center;
  89. font-size: 26rpx;
  90. color: #F83224 ;
  91. font-weight: 600;
  92. margin-left: 20rpx;
  93. .screen-icon {
  94. width: 24rpx;
  95. height: 24rpx;
  96. margin-left: 5rpx;
  97. }
  98. }
  99. }
  100. .top-tab {
  101. margin-top: 10rpx;
  102. padding: 0 20rpx;
  103. display: flex;
  104. justify-content: space-between;
  105. .tab {
  106. font-size: 26rpx;
  107. color: rgba(34, 34, 34, .8);
  108. flex-shrink: 0;
  109. height: 44rpx;
  110. display: flex;
  111. align-items: flex-end;
  112. padding-bottom: 12rpx;
  113. }
  114. .commodity {
  115. position: relative;
  116. font-weight: 600;
  117. }
  118. .commodity::before {
  119. content: '';
  120. display: block;
  121. height: 4rpx;
  122. width: 50%;
  123. background: #f83224;
  124. position: absolute;
  125. bottom: -10rpx;
  126. opacity: 0.8;
  127. left: 50%;
  128. transform: translate(-50%, 50%);
  129. }
  130. }
  131. .btn-list{
  132. display: flex;
  133. justify-content: space-around;
  134. align-items: center;
  135. margin-top: 32rpx;
  136. view{
  137. width: 210rpx;
  138. height: 68rpx;
  139. text-align: center;
  140. line-height: 68rpx;
  141. background-color: #f3f3f3;
  142. border-radius: 10rpx;
  143. font-size: 26rpx;
  144. color: #444;
  145. }
  146. .select-tab{
  147. background-color: rgba(248, 50, 36, .1);
  148. color: #f83224;
  149. font-weight: 600;
  150. }
  151. }
  152. .reset-config{
  153. display: flex;
  154. justify-content: space-between;
  155. align-items: center;
  156. margin-top: 44rpx;
  157. .reset{
  158. width: 260rpx;
  159. height: 76rpx;
  160. background-color: #f3f3f3;
  161. border: none;
  162. border-radius: 38rpx;
  163. color: #333;
  164. font-size: 28rpx;
  165. }
  166. .config{
  167. width: 402rpx;
  168. height: 76rpx;
  169. background-color: #F83224;
  170. color: #fff;
  171. border: none;
  172. border-radius: 38rpx;
  173. font-size: 28rpx;
  174. }
  175. }
  176. }
  177. </style>