(1)设置tabBar:
uni.setTabberItem({});
wx.setTabberItem({});
index | number | 是 | tabBar 的哪一项,从左边算起,索引从0开始 |
text | string | 否 | tab 上按钮文字 |
iconPath | string | 否 | 图片路径 |
selectedIconPath | string | 否 | 选中时的图片路径 |
pagePath | string | 否 | 页面绝对路径 |
visible | boolean | 否 | tab 是否显示 |
uni.setTabBarItem({
index: 0,
text: 'text',
iconPath: '/path/to/iconPath',
selectedIconPath: '/path/to/selectedIconPath',
pagePath: 'pages/home/home'
})
wx.setTabBarItem({
index: 0,
text: 'text',
iconPath: '/path/to/iconPath',
selectedIconPath: '/path/to/selectedIconPath',
pagePath: 'pages/home/home'
})
(2)显示tabBar:文章来源:https://www.toymoban.com/news/detail-714635.html
uni.showTabber();
wx.showTabber();
(3)隐藏tabBar:文章来源地址https://www.toymoban.com/news/detail-714635.html
uni.hideTabber();
wx.hideTabber();
到了这里,关于uniapp和小程序设置tabBar和显示与隐藏tabBar的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!