mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
49 lines
1.0 KiB
TypeScript
49 lines
1.0 KiB
TypeScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
field: true,
|
|
|
|
relation: {
|
|
name: 'checkbox',
|
|
type: 'descendant',
|
|
linked(target) {
|
|
this.children = this.children || [];
|
|
this.children.push(target);
|
|
this.updateChild(target);
|
|
},
|
|
unlinked(target) {
|
|
this.children = this.children.filter(
|
|
(child: WechatMiniprogram.Component.TrivialInstance) => child !== target
|
|
);
|
|
}
|
|
},
|
|
|
|
props: {
|
|
max: Number,
|
|
value: {
|
|
type: Array,
|
|
observer: 'updateChildren'
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
observer: 'updateChildren'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
updateChildren() {
|
|
(this.children || []).forEach((child: WechatMiniprogram.Component.TrivialInstance) =>
|
|
this.updateChild(child)
|
|
);
|
|
},
|
|
|
|
updateChild(child: WechatMiniprogram.Component.TrivialInstance) {
|
|
const { value, disabled } = this.data;
|
|
child.set({
|
|
value: value.indexOf(child.data.name) !== -1,
|
|
disabled: disabled || child.data.disabled
|
|
});
|
|
}
|
|
}
|
|
});
|