antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
34 lines (33 loc) • 1.23 kB
JavaScript
import { __assign } from "tslib";
import { Component, triggerEvent } from '../../_util/simply';
import { resolveEventValue } from '../../_util/platform';
import { FormInputDefaultProps } from './props';
import { createForm } from '../form';
Component(FormInputDefaultProps, {
handleRef: function (input) {
this.input = input;
},
onChange: function (value, e) {
this.emit('onChange', resolveEventValue(value));
triggerEvent(this, 'change', resolveEventValue(value), e);
},
onBlur: function (value, e) {
this.emit('onChange', resolveEventValue(value));
triggerEvent(this, 'blur', resolveEventValue(value), e);
},
onFocus: function (value, e) {
triggerEvent(this, 'focus', resolveEventValue(value), e);
},
onConfirm: function (value, e) {
triggerEvent(this, 'confirm', resolveEventValue(value), e);
},
}, null, [
createForm({
methods: {
setFormData: function (values) {
this.setData(__assign(__assign({}, this.data), { formData: __assign(__assign({}, this.data.formData), values) }));
this.input && this.input.update(this.data.formData.value);
},
},
}),
]);