Files

22 lines
420 B
JavaScript
Raw Permalink Normal View History

2020-11-17 18:52:15 +08:00
// 显示购物车tabBar的Badge
function showTabBarBadge(){
wx.getStorage({
key: 'shopCarInfo',
success: function (res) {
if (res.data.shopNum > 0) {
wx.setTabBarBadge({
index: 2,
text: `${res.data.shopNum}`
});
} else {
wx.removeTabBarBadge({
index: 2
});
}
}
});
}
module.exports = {
showTabBarBadge: showTabBarBadge
}