Uni-app菜单栏
来自CloudWiki
代码
.
"tabBar": { "color": "#8B8B8B", // 表示tabBar item项中文字默认的颜色 "selectedColor": "#F63515", // 表示tabBar item项中文字选中的颜色 "borderStyle": "black",// 表示tabBar 上边框的颜色,目前只支持 black/white "backgroundColor": "#ffffff",// 表示 tabBar 的背景颜色 "list": [{ "pagePath": "pages/index/index", // 表示第一tab项的页面路径 // "iconPath": "static/image/home_default.png", // 表示当前 tab 未选中时所显示的图标路径 // "selectedIconPath": "static/image/home_select.png", // 表示当前 tab 选中时所显示的图标文件路径 "text": "首页" // 表示当前 tab 的文字 }, { "pagePath": "pages/list/list", // "iconPath": "static/image/me_default.png", // "selectedIconPath": "static/image/me_select.png", "text": "我的" }] }