uniapp設置tabbar欄的消息提示紅標

image.png
<script>
uni.setTabBarBadge({ //顯示數(shù)字
index: 2,
text: '1'
})
uni.removeTabBarBadge({ //隱藏數(shù)字標
index:2
})
uni.showTabBarRedDot({ //顯示紅點
index: 2,
text: '1'
})
uni.hideTabBarRedDot({ //隱藏紅點
index:2
})
</script>

image.png
uni.setTabBarBadge({
index: 3,
text: '1'
})