mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
44 lines
783 B
JavaScript
44 lines
783 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
tabs2: [1, 2],
|
|
tabs3: [1, 2, 3],
|
|
tabs4: [1, 2, 3, 4],
|
|
tabs6: [1, 2, 3, 4, 5, 6],
|
|
tabsWithName: [
|
|
{ name: 'a', index: 1 },
|
|
{ name: 'b', index: 2 },
|
|
{ name: 'c', index: 3 }
|
|
]
|
|
},
|
|
|
|
onClickDisabled(event) {
|
|
wx.showToast({
|
|
title: `标签 ${event.detail.index + 1} 已被禁用`,
|
|
icon: 'none'
|
|
});
|
|
},
|
|
|
|
onChange(event) {
|
|
wx.showToast({
|
|
title: `切换到标签 ${event.detail.index + 1}`,
|
|
icon: 'none'
|
|
});
|
|
},
|
|
|
|
onClickNavRight() {
|
|
wx.showToast({
|
|
title: '点击 right nav',
|
|
icon: 'none'
|
|
});
|
|
},
|
|
|
|
onClick(event) {
|
|
wx.showToast({
|
|
title: `点击标签 ${event.detail.index + 1}`,
|
|
icon: 'none'
|
|
});
|
|
}
|
|
});
|