rex 74cb663c85
[new feature] Tab: refactor component & add new slot
支持 #1316

pull request 改动点:

* refactor sticky implementation
* improve performance
* add new slot left-nav & right-nav
2019-02-25 10:11:35 +08:00

43 lines
720 B
JavaScript

import Page from '../../common/page';
Page({
data: {
tabs: [1, 2, 3, 4],
tabsMore: [1, 2, 3, 4, 5, 6, 7, 8]
},
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'
});
},
onPageScroll(event) {
this.setData({
scrollTop: event.scrollTop
});
}
});