UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

38 lines (37 loc) 1.37 kB
import { __assign } from "tslib"; import { resolveEventValue } from '../../_util/platform'; import { Component, triggerEvent } from '../../_util/simply'; import { createForm } from '../form'; import { FormInputDefaultProps } from './props'; Component({ props: FormInputDefaultProps, methods: { 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); }, }, mixins: [ 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); }, }, }), ], });