screenPopup.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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
  7. v-model="searchData.keywords"
  8. :placeholder="i18n.searchGoods"
  9. shape="circle"
  10. prefixIcon="search"
  11. prefixIconStyle="font-size: 22px;color: #909399"
  12. ></u--input>
  13. <view class="screen" @click="openPopup">
  14. {{ i18n.screen }}
  15. <image
  16. class="screen-icon"
  17. src="../../../static/mine/335.png"
  18. mode=""
  19. ></image>
  20. </view>
  21. </view>
  22. <view class="tab">
  23. <view class="top-tab">
  24. <view
  25. :class="{ commodity: followPopup == '' }"
  26. class="tab"
  27. @click="tabSwitch('')"
  28. >
  29. {{ i18n.all }}
  30. </view>
  31. <view
  32. :class="{ commodity: followPopup == 'normal' }"
  33. class="tab"
  34. @click="tabSwitch('normal')"
  35. >
  36. {{ i18n.alreadyListed }}
  37. </view>
  38. <view
  39. :class="{ commodity: followPopup == 'down' }"
  40. class="tab"
  41. @click="tabSwitch('down')"
  42. >
  43. {{ i18n.removed }}
  44. </view>
  45. </view>
  46. </view>
  47. <view class="btn-list">
  48. <view
  49. :class="{ 'select-tab': selectTab == 0 }"
  50. @click="selected(0)"
  51. >{{ i18n.myGoods }}</view
  52. >
  53. <view
  54. :class="{ 'select-tab': selectTab == 1 }"
  55. @click="selected(1)"
  56. >{{ i18n.supplyChain }}</view
  57. >
  58. <view
  59. :class="{ 'select-tab': selectTab == 2 }"
  60. @click="selected(2)"
  61. >{{ i18n.operatedProducts }}</view
  62. >
  63. </view>
  64. <view class="reset-config">
  65. <button class="reset" @click="close">{{ i18n.reset }}</button
  66. ><button class="config" @click="confirm">{{ i18n.enter }}</button>
  67. </view>
  68. </view>
  69. </u-popup>
  70. </view>
  71. </template>
  72. <script>
  73. export default {
  74. data() {
  75. return {
  76. followPopup: "",
  77. selectTab: 0,
  78. searchData: {
  79. keywords: "",
  80. status: "",
  81. source: "0",
  82. },
  83. };
  84. },
  85. props: {
  86. follow: {
  87. typeof: String,
  88. default: "",
  89. },
  90. show: {
  91. typeof: Boolean,
  92. default: false,
  93. },
  94. },
  95. computed: {
  96. i18n() {
  97. return this.$t("index");
  98. },
  99. },
  100. watch: {
  101. //监听横向tab栏的数据,同步父组件和子组件横向tab栏的状态
  102. follow(newVal) {
  103. this.followPopup = newVal;
  104. },
  105. },
  106. methods: {
  107. //切换tab
  108. tabSwitch(num) {
  109. this.followPopup = num;
  110. this.searchData.status = num;
  111. },
  112. //关闭弹窗,将数据传入如=父组件
  113. close() {
  114. this.$emit("close");
  115. },
  116. confirm() {
  117. this.$emit("close", this.searchData);
  118. },
  119. //切换选中状态
  120. selected(num) {
  121. this.selectTab = num;
  122. this.searchData.source = num;
  123. },
  124. },
  125. };
  126. </script>
  127. <style scoped lang="scss">
  128. .top-tab-search {
  129. background-color: #fff;
  130. padding: 10rpx 24rpx;
  131. z-index: 20174;
  132. .search {
  133. display: flex;
  134. align-items: center;
  135. .screen {
  136. display: flex;
  137. align-items: center;
  138. font-size: 26rpx;
  139. color: #f83224;
  140. font-weight: 600;
  141. margin-left: 20rpx;
  142. .screen-icon {
  143. width: 24rpx;
  144. height: 24rpx;
  145. margin-left: 5rpx;
  146. }
  147. }
  148. }
  149. .top-tab {
  150. margin-top: 10rpx;
  151. padding: 0 20rpx;
  152. display: flex;
  153. justify-content: space-between;
  154. .tab {
  155. font-size: 26rpx;
  156. color: rgba(34, 34, 34, 0.8);
  157. flex-shrink: 0;
  158. height: 44rpx;
  159. display: flex;
  160. align-items: flex-end;
  161. padding-bottom: 12rpx;
  162. }
  163. .commodity {
  164. position: relative;
  165. font-weight: 600;
  166. }
  167. .commodity::before {
  168. content: "";
  169. display: block;
  170. height: 4rpx;
  171. width: 50%;
  172. background: #f83224;
  173. position: absolute;
  174. bottom: -10rpx;
  175. opacity: 0.8;
  176. left: 50%;
  177. transform: translate(-50%, 50%);
  178. }
  179. }
  180. .btn-list {
  181. display: flex;
  182. justify-content: space-around;
  183. align-items: center;
  184. margin-top: 32rpx;
  185. view {
  186. width: 210rpx;
  187. height: 68rpx;
  188. text-align: center;
  189. line-height: 68rpx;
  190. background-color: #f3f3f3;
  191. border-radius: 10rpx;
  192. font-size: 26rpx;
  193. color: #444;
  194. }
  195. .select-tab {
  196. background-color: rgba(248, 50, 36, 0.1);
  197. color: #f83224;
  198. font-weight: 600;
  199. }
  200. }
  201. .reset-config {
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. margin-top: 44rpx;
  206. .reset {
  207. width: 260rpx;
  208. height: 76rpx;
  209. background-color: #f3f3f3;
  210. border: none;
  211. border-radius: 38rpx;
  212. color: #333;
  213. font-size: 28rpx;
  214. }
  215. .config {
  216. width: 402rpx;
  217. height: 76rpx;
  218. background-color: #f83224;
  219. color: #fff;
  220. border: none;
  221. border-radius: 38rpx;
  222. font-size: 28rpx;
  223. }
  224. }
  225. }
  226. </style>