mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
field: true,
|
|
relation: {
|
|
name: 'radio-group',
|
|
type: 'ancestor'
|
|
},
|
|
classes: ['icon-class', 'label-class'],
|
|
props: {
|
|
name: null,
|
|
value: null,
|
|
disabled: Boolean,
|
|
labelDisabled: Boolean,
|
|
labelPosition: String
|
|
},
|
|
computed: {
|
|
iconClass: function iconClass() {
|
|
var _this$data = this.data,
|
|
disabled = _this$data.disabled,
|
|
name = _this$data.name,
|
|
value = _this$data.value;
|
|
return this.classNames('van-radio__icon', {
|
|
'van-radio__icon--disabled': disabled,
|
|
'van-radio__icon--checked': !disabled && name === value,
|
|
'van-radio__icon--check': !disabled && name !== value
|
|
});
|
|
}
|
|
},
|
|
methods: {
|
|
emitChange: function emitChange(value) {
|
|
var instance = this.getRelationNodes('../radio-group/index')[0] || this;
|
|
instance.$emit('input', value);
|
|
instance.$emit('change', value);
|
|
},
|
|
onChange: function onChange(event) {
|
|
this.emitChange(event.detail.value);
|
|
},
|
|
onClickLabel: function onClickLabel() {
|
|
if (!this.data.disabled && !this.data.labelDisabled) {
|
|
this.emitChange(this.data.name);
|
|
}
|
|
}
|
|
}
|
|
}); |