mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
45 lines
818 B
JavaScript
45 lines
818 B
JavaScript
Component({
|
|
properties: {
|
|
title: String,
|
|
name: String,
|
|
type: {
|
|
type: String,
|
|
value: 'input'
|
|
},
|
|
name: String,
|
|
value: String,
|
|
disabled: Boolean,
|
|
inputType: {
|
|
type: String,
|
|
value: 'text'
|
|
},
|
|
placeholder: String,
|
|
focus: Boolean,
|
|
mode: {
|
|
type: String,
|
|
value: 'normal'
|
|
},
|
|
right: Boolean,
|
|
error: Boolean
|
|
},
|
|
|
|
methods: {
|
|
handleZanFieldChange(event) {
|
|
console.info('[zan:field:change]', event);
|
|
this.triggerEvent('change', event);
|
|
},
|
|
|
|
handleZanFieldFocus(event) {
|
|
console.info('[zan:field:focus]', event);
|
|
|
|
this.triggerEvent('focus', event);
|
|
},
|
|
|
|
handleZanFieldBlur(event) {
|
|
console.info('[zan:field:blur]', event);
|
|
|
|
this.triggerEvent('blur', event);
|
|
}
|
|
}
|
|
})
|