小程序中在底部tabbar上显示购物的数量(如:购物车)


onShow: function() {
  if (this.data.num == '') {
    //如果还未添加商品时候,可使用这个wx.removeTabBarBadge来移除
    wx.removeTabBarBadge({//移除tabbar右上角的文本
      index: 2,//tabbar下标
    })
  } else {
    //添加商品后通过wx.setTabBarBadge来进行设置
    wx.setTabBarBadge({//tabbar右上角添加文本
      index: 2,//tabbar下标
      text: this.data.num //显示的内容,必须为字符串可通过toString()将number转为字符串
    })
  }
}

你可能感兴趣的:(小程序中在底部tabbar上显示购物的数量(如:购物车))