uniapp 取消uni.setTabBarBadge角标
时间: 2023-12-09 09:06:24 浏览: 141
uniapp小程序tabbar图标
根据提供的引用内容,我们可以得知在uniapp中取消tabbar角标可以使用uni.removeTabBarBadge方法。具体使用方法为:在需要取消角标的页面中调用uni.removeTabBarBadge方法,并传入对应的index参数即可。例如:uni.removeTabBarBadge({ index: 2, }); 表示取消第三个tabbar的角标。需要注意的是,如果在非tabbar页面上使用wx.removeTabBarBadge方法是无效的,需要在每个tabbar页面的onShow方法中更新角标为最新。
阅读全文