下面的底导航栏应该放在哪个文件里? 下面的底导航栏应该放在哪个文件里?
app.json
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/dongtai/dongtai",
"pages/dongtai/home/home",
"pages/component/home/home",
"pages/about/home/home"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Weixin",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#4AA7F2",
"borderStyle": "black",
"list": [
{
"selectedIconPath": "/images/tabbar/welfare_cur.png",
"iconPath": "/images/tabbar/welfare.png",
"pagePath": "pages/dongtai/home/home",
"text": "动态"
},
{
"selectedIconPath": "/images/tabbar/case_cur.png",
"iconPath": "/images/tabbar/case.png",
"pagePath": "pages/component/home/home",
"text": "发布"
},
{
"selectedIconPath": "/images/tabbar/personal_cur.png",
"iconPath": "/images/tabbar/personal.png",
"pagePath": "pages/about/home/home",
"text": "我的"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}
这段代码是手动的
,
"tabBar": {
"color": "#999999",
"selectedColor": "#4AA7F2",
"borderStyle": "black",
"list": [
{
"selectedIconPath": "/images/tabbar/welfare_cur.png",
"iconPath": "/images/tabbar/welfare.png",
"pagePath": "pages/dongtai/home/home",
"text": "动态"
},
{
"selectedIconPath": "/images/tabbar/case_cur.png",
"iconPath": "/images/tabbar/case.png",
"pagePath": "pages/component/home/home",
"text": "发布"
},
{
"selectedIconPath": "/images/tabbar/personal_cur.png",
"iconPath": "/images/tabbar/personal.png",
"pagePath": "pages/about/home/home",
"text": "我的"
}
]
},
这段代码是建立了文件夹后,自动的
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/dongtai/dongtai",
"pages/dongtai/home/home",
"pages/component/home/home",
"pages/about/home/home"
],
|