mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
relation: {
|
|
name: 'collapse-item',
|
|
type: 'descendant',
|
|
linked: function linked(child) {
|
|
this.set({
|
|
items: [].concat(this.data.items, [child])
|
|
}, function () {
|
|
child.updateExpanded();
|
|
});
|
|
}
|
|
},
|
|
props: {
|
|
accordion: Boolean,
|
|
value: null
|
|
},
|
|
data: {
|
|
items: []
|
|
},
|
|
watch: {
|
|
value: function value() {
|
|
this.data.items.forEach(function (child) {
|
|
child.updateExpanded();
|
|
});
|
|
},
|
|
accordion: function accordion() {
|
|
this.data.items.forEach(function (child) {
|
|
child.updateExpanded();
|
|
});
|
|
}
|
|
},
|
|
methods: {
|
|
switch: function _switch(name, expanded) {
|
|
var _this$data = this.data,
|
|
accordion = _this$data.accordion,
|
|
value = _this$data.value;
|
|
|
|
if (!accordion) {
|
|
name = expanded ? value.concat(name) : value.filter(function (activeName) {
|
|
return activeName !== name;
|
|
});
|
|
} else {
|
|
name = expanded ? name : '';
|
|
}
|
|
|
|
this.$emit('change', name);
|
|
this.$emit('input', name);
|
|
}
|
|
}
|
|
}); |