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
| Component({
| externalClasses: ['custom-class'],
|
| properties: {
| tabList: Array,
| },
|
| data: {
| unfolded: false,
| boardMaxHeight: null,
| },
| attached() {
| wx.createSelectorQuery()
| .in(this)
| .select('.c-tabbar-more')
| .boundingClientRect((rect) => {
| this.setData({ boardMaxHeight: rect.height });
| })
| .exec();
| },
|
| methods: {
| changeFold() {
| this.setData({
| unfolded: !this.data.unfolded,
| });
| const { unfolded } = this.data;
| this.triggerEvent('change', { unfolded });
| },
|
| onSelect(event) {
| const activeKey = event.currentTarget.dataset.index;
| this.triggerEvent('select', activeKey);
| this.changeFold();
| },
| },
| });
|
|