Yao 38f91f4893
[improvement] Field: 新增 Form 支持 (#75)
* feat: field 增加 form 支持 && field 增加 focus blur 支持

* 增加文档说明

* 优化 field 文档
2017-12-10 00:15:05 +08:00

43 lines
1.0 KiB
JavaScript

const { extractComponentId } = require('../utils/index');
module.exports = {
_handleZanFieldChange(event) {
const componentId = extractComponentId(event);
event.componentId = componentId;
console.info('[zan:field:change]', event);
if (this.handleZanFieldChange) {
return this.handleZanFieldChange(event);
}
console.warn('页面缺少 handleZanFieldChange 回调函数');
},
_handleZanFieldFocus(event) {
const componentId = extractComponentId(event);
event.componentId = componentId;
console.info('[zan:field:focus]', event);
if (this.handleZanFieldFocus) {
return this.handleZanFieldFocus(event);
}
console.warn('页面缺少 handleZanFieldFocus 回调函数');
},
_handleZanFieldBlur(event) {
const componentId = extractComponentId(event);
event.componentId = componentId;
console.info('[zan:field:blur]', event);
if (this.handleZanFieldBlur) {
return this.handleZanFieldBlur(event);
}
console.warn('页面缺少 handleZanFieldBlur 回调函数');
}
};