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
| "use strict";
| Object.defineProperty(exports, "__esModule", { value: true });
| var component_1 = require("../common/component");
| var relation_1 = require("../common/relation");
| var animate_1 = require("./animate");
| (0, component_1.VantComponent)({
| classes: ['title-class', 'content-class'],
| relation: (0, relation_1.useParent)('collapse'),
| props: {
| name: null,
| title: null,
| value: null,
| icon: String,
| label: String,
| disabled: Boolean,
| clickable: Boolean,
| border: {
| type: Boolean,
| value: true,
| },
| isLink: {
| type: Boolean,
| value: true,
| },
| },
| data: {
| expanded: false,
| },
| mounted: function () {
| this.updateExpanded();
| this.mounted = true;
| },
| methods: {
| updateExpanded: function () {
| if (!this.parent) {
| return;
| }
| var _a = this.parent.data, value = _a.value, accordion = _a.accordion;
| var _b = this.parent.children, children = _b === void 0 ? [] : _b;
| var name = this.data.name;
| var index = children.indexOf(this);
| var currentName = name == null ? index : name;
| var expanded = accordion
| ? value === currentName
| : (value || []).some(function (name) { return name === currentName; });
| if (expanded !== this.data.expanded) {
| (0, animate_1.setContentAnimate)(this, expanded, this.mounted);
| }
| this.setData({ index: index, expanded: expanded });
| },
| onClick: function () {
| if (this.data.disabled) {
| return;
| }
| var _a = this.data, name = _a.name, expanded = _a.expanded;
| var index = this.parent.children.indexOf(this);
| var currentName = name == null ? index : name;
| this.parent.switch(currentName, !expanded);
| },
| },
| });
|
|