|
| 1 | +const component2 = my.canIUse('component2'); |
| 2 | + |
| 3 | +Page({ |
| 4 | + data: { |
| 5 | + curIdx: 2, |
| 6 | + height: 30, |
| 7 | + type: 'basis', |
| 8 | + animation: false, |
| 9 | + swipeable: false, |
| 10 | + titleSlot: false, |
| 11 | + plusSlot: true, |
| 12 | + sticky: false, |
| 13 | + tabs: [ |
| 14 | + { |
| 15 | + title: '选项一', |
| 16 | + subTitle: '描述文案', |
| 17 | + corner: true, |
| 18 | + }, |
| 19 | + { |
| 20 | + title: '选项二', |
| 21 | + subTitle: '描述文案描述', |
| 22 | + }, |
| 23 | + { |
| 24 | + title: '选项三', |
| 25 | + subTitle: '描述', |
| 26 | + }, |
| 27 | + ], |
| 28 | + tabsType: [ |
| 29 | + { name: 'basis', value: '普通', checked: true }, |
| 30 | + { name: 'capsule', value: '胶囊' }, |
| 31 | + { name: 'mixin', value: '带描述' }, |
| 32 | + ], |
| 33 | + tabsNumber: [ |
| 34 | + { name: '1', value: '一条' }, |
| 35 | + { name: '2', value: '两条' }, |
| 36 | + { name: '3', value: '三条' }, |
| 37 | + { name: '-1', value: '很多', checked: true }, |
| 38 | + ], |
| 39 | + tabsAnimation: [ |
| 40 | + { name: true, value: 'true' }, |
| 41 | + { name: false, value: 'false', checked: true }, |
| 42 | + ], |
| 43 | + tabsSwipeable: [ |
| 44 | + { name: true, value: 'true' }, |
| 45 | + { name: false, value: 'false', checked: true }, |
| 46 | + ], |
| 47 | + tabsTitleSlotScope: [ |
| 48 | + { name: true, value: 'true' }, |
| 49 | + { name: false, value: 'false', checked: true }, |
| 50 | + ], |
| 51 | + tabsSticky: [ |
| 52 | + { name: true, value: 'true' }, |
| 53 | + { name: false, value: 'false', checked: true }, |
| 54 | + ], |
| 55 | + tabsPlusSlotScope: [ |
| 56 | + { name: true, value: 'true', checked: true }, |
| 57 | + { name: false, value: 'false' }, |
| 58 | + ], |
| 59 | + canSwipe: true, |
| 60 | + }, |
| 61 | + onLoad() { |
| 62 | + if (!component2) { |
| 63 | + this.setData({ |
| 64 | + canSwipe: component2, |
| 65 | + }); |
| 66 | + } |
| 67 | + }, |
| 68 | + // tabs 的点击回调 |
| 69 | + changeTab(e) { |
| 70 | + this.setData({ |
| 71 | + curIdx: e, |
| 72 | + }); |
| 73 | + }, |
| 74 | + // 右上角的 plus 区域点击事件 |
| 75 | + iconClick() { |
| 76 | + my.alert({ |
| 77 | + title: 'slot="plus"', |
| 78 | + content: '自定义 slot 的 icon 被点击', |
| 79 | + }); |
| 80 | + }, |
| 81 | +}); |
0 commit comments