1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| <template>
| <uni-shadow-root class="vant-collapse-index"><view :class="'custom-class van-collapse '+(border ? 'van-hairline--top-bottom' : '')">
| <slot></slot>
| </view></uni-shadow-root>
| </template>
|
| <script>
|
| global['__wxRoute'] = 'vant/collapse/index'
| import { VantComponent } from '../common/component';
| VantComponent({
| relation: {
| name: 'collapse-item',
| type: 'descendant',
| current: 'collapse',
| },
| props: {
| value: {
| type: null,
| observer: 'updateExpanded',
| },
| accordion: {
| type: Boolean,
| observer: 'updateExpanded',
| },
| border: {
| type: Boolean,
| value: true,
| },
| },
| methods: {
| updateExpanded() {
| this.children.forEach((child) => {
| child.updateExpanded();
| });
| },
| switch(name, expanded) {
| const { accordion, value } = this.data;
| const changeItem = name;
| if (!accordion) {
| name = expanded
| ? (value || []).concat(name)
| : (value || []).filter((activeName) => 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);
| },
| },
| });
| export default global['__wxComponents']['vant/collapse/index']
| </script>
| <style platform="mp-weixin">
| @import '../common/index.css';
| </style>
|
|