mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
38 lines
828 B
JavaScript
38 lines
828 B
JavaScript
import { create } from '../common/create';
|
|
|
|
create({
|
|
relations: {
|
|
'../radio/index': {
|
|
type: 'descendant',
|
|
linked(target) {
|
|
const { value, disabled } = this.data;
|
|
target.setData({
|
|
value: value,
|
|
disabled: disabled || target.data.disabled
|
|
});
|
|
}
|
|
}
|
|
},
|
|
|
|
props: {
|
|
value: {
|
|
type: null,
|
|
observer(value) {
|
|
const children = this.getRelationNodes('../radio/index');
|
|
children.forEach(child => {
|
|
child.setData({ value });
|
|
});
|
|
}
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
observer(disabled) {
|
|
const children = this.getRelationNodes('../radio/index');
|
|
children.forEach(child => {
|
|
child.setData({ disabled: disabled || children.data.disabled });
|
|
});
|
|
}
|
|
}
|
|
}
|
|
});
|