antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
25 lines (24 loc) • 645 B
JavaScript
import mixinValue from '../mixins/value';
import { Component, triggerEvent } from '../_util/simply';
import { RadioDefaultProps } from './props';
Component({
props: RadioDefaultProps,
methods: {
handleTap: function (e) {
// 只能从 false -> true
if (this.getValue()) {
return;
}
if (!this.isControlled()) {
this.update(true);
}
triggerEvent(this, 'change', true, e);
},
},
mixins: [
mixinValue({
valueKey: 'checked',
defaultValueKey: 'defaultChecked',
}),
],
});