赞
踩
UNIAPP原生TABBAR设置并添加数字角标或小红点提示
uni.showTabBarRedDot({ //显示红点
index: 4 //tabbar下标
})
如下图所示:
uni.setTabBarBadge({ //显示数字
index: 4, //tabbar下标
text: '6' //数字
})
如下图所示:
uni.removeTabBarBadge({ //隐藏数字标
index: 2 //tabbar下标
})
uni.hideTabBarRedDot({ //隐藏红点
index: 2 //tabbar下标
})
在我的界面如果有待用户阅读条数大于0,则在该tabbar(我的)顶部显示小红点。
onshow(){
setTimeout(() => {
th.allRedDot = 所有待阅读数量相加
if (th.allRedDot > 0) {
uni.showTabBarRedDot({ //显示红点
index: 4 //tabbar下标
})
}
}, 1000)
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。