uni-app项目设置底部tabbar

时间:2025-04-02 18:01:44
添加tabBar字段,然后设置list
list对应的就是tab菜单选项
然后就是要设置tabbar的菜单图片,这个随你,我是直接放一个logo文件的
list最少两个,最多五个
"tabBar": {
        "color": "#C0C4CC", //未选中的菜单文字颜色
        "selectedColor": "#fa436a", //选中时的菜单文字颜色
        "borderStyle": "black",
        "backgroundColor": "#ffffff", //背景
        "list": [{
                "pagePath": "pages/index/index", //页面地址
                "iconPath": "static/", //未选中时的图片
                "selectedIconPath": "static/", //选中时的图片
                "text": "首页" //菜单文字
            },
            {
                "pagePath": "pages/home/index",
                "iconPath": "static/",
                "selectedIconPath": "static/",
                "text": "首页"
            }
        ]
    }