实现点击“查看全部”按钮,实现首页标签页跳转至应用标签页
//点击查看按钮
handleLookApp = (tabActive) => {
this.dispatch('saveState', { tabActive })
}
handleChangeTabs = (tab) => {
this.dispatch('saveState', { tabActive: tab.key })
}
<Tabs
tabs={tabs}
page={tabActive} //主要是page tab分页
swipeable={false}
tabBarPosition="bottom"
onChange={this.handleChangeTabs}
renderTab={tab => <span>{tab.title}</span>}
>