mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
45 lines
869 B
TypeScript
45 lines
869 B
TypeScript
import { VantComponent } from '../common/component';
|
|
|
|
type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
|
|
|
|
VantComponent({
|
|
field: true,
|
|
|
|
relation: {
|
|
name: 'checkbox',
|
|
type: 'descendant',
|
|
current: 'checkbox-group',
|
|
linked(target) {
|
|
this.updateChild(target);
|
|
},
|
|
},
|
|
|
|
props: {
|
|
max: Number,
|
|
value: {
|
|
type: Array,
|
|
observer: 'updateChildren',
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
observer: 'updateChildren',
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
updateChildren() {
|
|
(this.children || []).forEach((child: TrivialInstance) =>
|
|
this.updateChild(child)
|
|
);
|
|
},
|
|
|
|
updateChild(child: TrivialInstance) {
|
|
const { value, disabled } = this.data;
|
|
child.setData({
|
|
value: value.indexOf(child.data.name) !== -1,
|
|
parentDisabled: disabled,
|
|
});
|
|
},
|
|
},
|
|
});
|