(1)设置tabBar:
javascript
uni.setTabberItem({});
javascript
wx.setTabberItem({});
|------------------|---------|---|--------------------------|
| index | number | 是 | tabBar 的哪一项,从左边算起,索引从0开始 |
| text | string | 否 | tab 上按钮文字 |
| iconPath | string | 否 | 图片路径 |
| selectedIconPath | string | 否 | 选中时的图片路径 |
| pagePath | string | 否 | 页面绝对路径 |
| visible | boolean | 否 | tab 是否显示 |
javascript
uni.setTabBarItem({
index: 0,
text: 'text',
iconPath: '/path/to/iconPath',
selectedIconPath: '/path/to/selectedIconPath',
pagePath: 'pages/home/home'
})
javascript
wx.setTabBarItem({
index: 0,
text: 'text',
iconPath: '/path/to/iconPath',
selectedIconPath: '/path/to/selectedIconPath',
pagePath: 'pages/home/home'
})
(2)显示tabBar:
javascript
uni.showTabber();
javascript
wx.showTabber();
(3)隐藏tabBar:
javascript
uni.hideTabber();
javascript
wx.hideTabber();