mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
40 lines
893 B
TypeScript
40 lines
893 B
TypeScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
field: true,
|
|
|
|
relation: {
|
|
name: 'checkbox',
|
|
type: 'descendant',
|
|
linked(target: Weapp.Component) {
|
|
const { value, disabled } = this.data;
|
|
target.set({
|
|
value: value.indexOf(target.data.name) !== -1,
|
|
disabled: disabled || target.data.disabled
|
|
});
|
|
}
|
|
},
|
|
|
|
props: {
|
|
value: Array,
|
|
disabled: Boolean,
|
|
max: Number
|
|
},
|
|
|
|
watch: {
|
|
value(value) {
|
|
const children = this.getRelationNodes('../checkbox/index');
|
|
children.forEach(child => {
|
|
child.set({ value: value.indexOf(child.data.name) !== -1 });
|
|
});
|
|
},
|
|
|
|
disabled(disabled: boolean) {
|
|
const children = this.getRelationNodes('../checkbox/index');
|
|
children.forEach(child => {
|
|
child.set({ disabled: disabled || child.data.disabled });
|
|
});
|
|
}
|
|
}
|
|
});
|