123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <template>
- <view class="u-search">
- <view class="u-search-input">
- <van-search :value="searchKeyword" :placeholder="placeholder" use-action-slot class="van-search"
- @change="query" @search="onClickSearch">
- <view class="u-search-text" slot="action" @tap="onClickSearch">搜索</view>
- </van-search>
- </view>
- </view>
- </template>
- <script>
-
- import VanSearch from '@/wxcomponents/vant/search/index'
-
- export default {
- options: {
- styleIsolation: 'shared'
- },
- components: {
- VanSearch
- },
- props: {
- value: String,
- placeholder: {
- type: String,
- default: ''
- }
- },
- computed: {},
- watch: {
- searchKeyword(val) {
- this.$emit('input', val)
- },
- value(val) {
- this.searchKeyword = this.value
- }
- },
- data() {
- return {
- searchKeyword: ''
- }
- },
- created() {
- this.searchKeyword = this.value
- },
- mounted() {},
- methods: {
- query(e) {
- this.searchKeyword = e.detail
- },
- onClickSearch() {
- this.$emit('search')
- }
- }
- }
- </script>
- <style lang="scss">
- .u-search {
- .u-search-input {
- height: 64rpx;
- border-radius: 50rpx;
- background-color: #FFFFFF;
- box-shadow: 0 4rpx 4rpx 0 rgba(0, 0, 0, 0.15);
- border: 2rpx solid #D9D9D9;
- padding: 4rpx;
- overflow: hidden;
- .van-field__placeholder {
- font-size: $fontSize2;
- }
- .van-cell__left-icon-wrap {
- height: 50rpx;
- }
- .van-field__control {
- font-size: $fontSize2;
- height: 50rpx;
- }
- }
- .van-search {
- --search-padding: 0rpx;
- --search-input-height: 34rpx;
- --search-background-color: #FFFFFF;
- padding-right: 24rpx;
- font-size: $fontSize2;
- }
- .u-search-text {
- font-size: $fontSize2;
- }
- .van-search__action {
- color: #333333;
- }
- .van-icon {
- color: #D4D4D6;
- }
- .van-cell {
- padding: 2rpx 0rpx 2rpx !important;
- }
- }
- </style>
|