uniapp设置tabbar栏的消息提示红标
image.png
<script>
uni.setTabBarBadge({ //显示数字
index: 2,
text: '1'
})
uni.removeTabBarBadge({ //隐藏数字标
index:2
})
uni.showTabBarRedDot({ //显示红点
index: 2,
text: '1'
})
uni.hideTabBarRedDot({ //隐藏红点
index:2
})
</script>
image.png
uni.setTabBarBadge({
index: 3,
text: '1'
})