uniapp 中的 tabBar 配置
2024-09-15
41
1. 前言
tabBar 配置:https://uniapp.dcloud.io/collocation/pages?id=tabbar
修改 page.json
, 在文件中添加以下内容(tabBar 和 globalStyle同级)
2. 使用示例
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "static/tabBar/home.png",
"selectedIconPath": "static/tabBar/homeSelected.png",
"text": "首页"
},
{
"pagePath": "pages/test/test",
"iconPath": "static/tabBar/my.png",
"selectedIconPath": "static/tabBar/mySelected.png",
"text": "我的"
}
]
}
属性 | 是否必填 | 描述 |
---|---|---|
color | 是 | 文字默认颜色(未选中时的颜色) |
selectedColor | 是 | 文字选中时的颜色 |
backgroundColor | 是 | tab 背景颜色 |
list | 是 | tab 的菜单列表 |
赞一波!
相关文章
文章评论
评论问答