You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.1 KiB
85 lines
2.1 KiB
<template>
|
|
<view :class="'custom-class van-collapse ' + (border ? 'van-hairline--top-bottom' : '')">
|
|
<slot />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
'use strict';
|
|
Object.defineProperty(exports, '__esModule', {
|
|
value: true
|
|
});
|
|
var component_1 = require('../common/component');
|
|
var relation_1 = require('../common/relation');
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
relation: (0, relation_1.useChildren)('collapse-item'),
|
|
props: {
|
|
value: {
|
|
type: null
|
|
},
|
|
accordion: {
|
|
type: Boolean
|
|
},
|
|
border: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
methods: {
|
|
updateExpanded: function () {
|
|
this.children.forEach(function (child) {
|
|
child.updateExpanded();
|
|
});
|
|
},
|
|
switchFun: function (name, expanded) {
|
|
var _a = this;
|
|
var accordion = _a.accordion;
|
|
var value = _a.value;
|
|
var changeItem = name;
|
|
if (!accordion) {
|
|
name = expanded
|
|
? (value || []).concat(name)
|
|
: (value || []).filter(function (activeName) {
|
|
return activeName !== name;
|
|
});
|
|
} else {
|
|
name = expanded ? name : '';
|
|
}
|
|
if (expanded) {
|
|
this.$emit('open', changeItem);
|
|
} else {
|
|
this.$emit('close', changeItem);
|
|
}
|
|
this.$emit('change', name);
|
|
this.$emit('input', name);
|
|
}
|
|
},
|
|
watch: {
|
|
value: {
|
|
handler: function () {
|
|
this.children.forEach(function (child) {
|
|
child.updateExpanded();
|
|
});
|
|
},
|
|
|
|
immediate: true
|
|
},
|
|
|
|
accordion: {
|
|
handler: function () {
|
|
this.children.forEach(function (child) {
|
|
child.updateExpanded();
|
|
});
|
|
},
|
|
|
|
immediate: true
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
@import '../common/index.css';
|
|
</style>
|
|
|