mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
49 lines
1.0 KiB
JavaScript
49 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
Component({
|
|
behaviors: ['wx://form-field'],
|
|
|
|
properties: {
|
|
title: String,
|
|
type: {
|
|
type: String,
|
|
value: 'input'
|
|
},
|
|
disabled: Boolean,
|
|
inputType: {
|
|
type: String,
|
|
value: 'text'
|
|
},
|
|
placeholder: String,
|
|
focus: Boolean,
|
|
mode: {
|
|
type: String,
|
|
value: 'normal'
|
|
},
|
|
right: Boolean,
|
|
error: Boolean,
|
|
maxlength: {
|
|
type: Number,
|
|
value: 140
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
handleFieldChange: function handleFieldChange(event) {
|
|
var _event$detail = event.detail,
|
|
detail = _event$detail === undefined ? {} : _event$detail;
|
|
var _detail$value = detail.value,
|
|
value = _detail$value === undefined ? '' : _detail$value;
|
|
|
|
this.setData({ value: value });
|
|
|
|
this.triggerEvent('change', event);
|
|
},
|
|
handleFieldFocus: function handleFieldFocus(event) {
|
|
this.triggerEvent('focus', event);
|
|
},
|
|
handleFieldBlur: function handleFieldBlur(event) {
|
|
this.triggerEvent('blur', event);
|
|
}
|
|
}
|
|
}); |