uniapp隐藏底部导航栏
看什么看,要多看uni官方文档,里面啥都有
uniapp官方网址:uni设置TabBar
javascript
// 展示
uni.showTabBar({
animation:true,
success() {
console.debug('隐藏成功')
}
})
javascript
//隐藏
uni.hideTabBar({
animation:true,
success() {
console.debug('隐藏成功')
}
})