美文网首页
小程序tabbar

小程序tabbar

作者: crayona | 来源:发表于2020-10-29 16:10 被阅读0次

    1.tabbar右上角购物车数量展示

    wx.setTabBarBadge({

    index:1,//tabbar的下标

    text:''//要写入的内容     ***text要使用字符串形式

    })

    官方文档暂不支持更改右上角数字标样式  留坑待填

    2.是否显示tabbar右上角红点

    showTabBarRedDot

    3显示隐藏tabbar

    wx.showTabBar()   wx.hideTabBar();

    animation/success./fail/complete

    4.样式设置

    color selectorColor backgroundColor borderStyle  支持16进制颜色值

    borderStyle tabbar 顶部边框的颜色

    "tabBar": {

            "color": "#333",

            "selectedColor": "#051878",

            "backgroundColor":"#fff",

            "list": []

    }

    5动态设置每一个

    wx.setTabBarItem({

    index:1,//第几个tabbar

    text:''//按钮上的文字

    iconPath:''//图标路径

    selectedIconPath:''//选中的图标路径

    })

    相关文章

      网友评论

          本文标题:小程序tabbar

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