uni-app 底部导航栏设置角标、红点
2020-09-14 本文已影响0人
Giraffe_00
1、设置角标 【tabBar 角标设置】
uni.setTabBarBadge({
index: 0,
text: '1'
})
移除角标
uni.removeTabBarBadge({
index: 0
})
2、显示 tabBar 某一项的右上角的红点。【tabBar 红点设置】
uni.showTabBarRedDot({
index: 0
})
隐藏 tabBar 某一项的右上角的红点。
uni.hideTabBarRedDot({
index: 0
})
3、隐藏 tabBar 【tabBar 隐藏显示】
uni.hideTabBar()
显示 tabBar
uni.showTabBar()