uni-app 底部导航栏添加角标或者红点 1. uni.setTabBarStyle(OBJECT) 动态设置 tabBar 的整体样式 uni.setTabBarBadge({ index: 2, text: '1' }) 1. 2. 3. 4. 注意:text只接受string类型 2. uni.showTabBarRedDot(OBJECT) 显示tabBar 某一项的右上角的红点。 uni.showTabBarRedDot({ index: 2 })...