123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <template>
- <view :class="utils.bem('search', { withaction: showAction || useActionSlot }) + ' custom-class'" :style="'background: ' + background">
- <view :class="utils.bem('search__content', [shape])">
- <view class="van-search__label" v-if="label">{{ label }}</view>
- <slot v-else name="label" />
- <van-field
- type="search"
- :left-icon="!useLeftIconSlot ? leftIcon : ''"
- :right-icon="!useRightIconSlot ? rightIcon : ''"
- :focus="focus"
- :error="error"
- :border="false"
- confirm-type="search"
- class="van-search__field field-class"
- :value="value"
- :disabled="disabled"
- :readonly="readonly"
- :clearable="clearable"
- :maxlength="maxlength"
- :input-align="inputAlign"
- input-class="input-class"
- :placeholder="placeholder"
- :placeholder-style="placeholderStyle"
- custom-style="padding: 5px 10px 5px 0; background-color: transparent;"
- @blur="onBlur"
- @focus="onFocus"
- @change="onChange"
- @confirm="onSearch"
- @clear="onClear"
- >
- <slot v-if="useLeftIconSlot" name="left-icon" slot="left-icon" />
- <slot v-if="useRightIconSlot" name="right-icon" slot="right-icon" />
- </van-field>
- </view>
- <view v-if="showAction || useActionSlot" class="van-search__action" hover-class="van-search__action--hover" hover-stay-time="70">
- <slot v-if="useActionSlot" name="action" />
- <view v-else @tap="onCancel" class="cancel-class">{{ actionText }}</view>
- </view>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- var version_1 = require('../common/version');
- component_1.VantComponent({
- field: true,
- classes: ['field-class', 'input-class', 'cancel-class'],
- props: {
- label: String,
- focus: Boolean,
- error: Boolean,
- disabled: Boolean,
- readonly: Boolean,
- inputAlign: String,
- showAction: Boolean,
- useActionSlot: Boolean,
- useLeftIconSlot: Boolean,
- useRightIconSlot: Boolean,
- leftIcon: {
- type: String,
- value: 'search'
- },
- rightIcon: String,
- placeholder: String,
- placeholderStyle: String,
- actionText: {
- type: String,
- value: '取消'
- },
- background: {
- type: String,
- value: '#ffffff'
- },
- maxlength: {
- type: Number,
- value: -1
- },
- shape: {
- type: String,
- value: 'square'
- },
- clearable: {
- type: Boolean,
- value: true
- }
- },
- methods: {
- onChange: function (event) {
- if (version_1.canIUseModel()) {
- this.setData({
- value: event.detail
- });
- }
- this.$emit('change', event.detail);
- },
- onCancel: function () {
- var that = this;
- /**
- * 修复修改输入框值时,输入框失焦和赋值同时触发,赋值失效
- * https://github.com/youzan/@vant/weapp/issues/1768
- */
- setTimeout(function () {
- if (version_1.canIUseModel()) {
- that.setData({
- value: ''
- });
- }
- that.$emit('cancel');
- that.$emit('change', '');
- }, 200);
- },
- onSearch: function (event) {
- this.$emit('search', event.detail);
- },
- onFocus: function (event) {
- this.$emit('focus', event.detail);
- },
- onBlur: function (event) {
- this.$emit('blur', event.detail);
- },
- onClear: function (event) {
- this.$emit('clear', event.detail);
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|