mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
42 lines
986 B
JavaScript
42 lines
986 B
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
field: true,
|
|
classes: ['cancel-class'],
|
|
props: {
|
|
focus: Boolean,
|
|
disabled: Boolean,
|
|
readonly: Boolean,
|
|
showAction: Boolean,
|
|
useActionSlot: Boolean,
|
|
placeholder: String,
|
|
background: {
|
|
type: String,
|
|
value: '#f2f2f2'
|
|
},
|
|
maxlength: {
|
|
type: Number,
|
|
value: -1
|
|
}
|
|
},
|
|
methods: {
|
|
onChange(event) {
|
|
this.setData({ value: event.detail });
|
|
this.$emit('change', event.detail);
|
|
},
|
|
onCancel() {
|
|
this.setData({ value: '' });
|
|
this.$emit('cancel');
|
|
this.$emit('change', '');
|
|
},
|
|
onSearch() {
|
|
this.$emit('search', this.data.value);
|
|
},
|
|
onFocus() {
|
|
this.$emit('focus');
|
|
},
|
|
onBlur() {
|
|
this.$emit('blur');
|
|
}
|
|
}
|
|
});
|