goodSearch.vue 652 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="good_search">
  3. <view class="search-box">
  4. <view class="goods__list-search">
  5. <u-search placeholder="搜索商品" v-model="keyword" @search="search" :showAction="false" shape="round"
  6. bgColor=" #F3F4F6" height="36"></u-search>
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. keyword: ''
  16. };
  17. },
  18. methods: {
  19. search() {
  20. console.log(this.keyword);
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .search-box {
  27. height: 52px;
  28. width: 100%;
  29. background-color: #fff;
  30. }
  31. .goods__list-search {
  32. padding: 4px 12px 12px;
  33. background-color: #fff;
  34. }
  35. </style>