美文网首页
小程序 | 设置TabBar角标

小程序 | 设置TabBar角标

作者: 前端阿峰 | 来源:发表于2020-07-12 00:20 被阅读0次

    设置wx.setTabBarBadge(Object object)角标

    if (app.globalData.goodsNum > 99) {
                wx.setTabBarBadge({
                    index: 2,
                    text: '99+'
                })
            } else if (app.globalData.goodsNum <= 0) {
                wx.hideTabBarRedDot({
                    index: 2,
                })
            } else {
                wx.setTabBarBadge({
                    index: 2,
                    text: ''+ app.globalData.goodsNum
                })
            }
    

    相关文章

      网友评论

          本文标题:小程序 | 设置TabBar角标

          本文链接:https://www.haomeiwen.com/subject/wggwcktx.html