YNEduApp/pages.json

45 lines
993 B
JSON
Raw Normal View History

2024-08-05 09:23:52 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
2024-08-05 11:08:50 +08:00
"navigationBarTitleText": "首页"
}
},
{
"path" : "pages/user/user",
"style" :
{
"navigationBarTitleText" : "个人中心"
2024-08-05 09:23:52 +08:00
}
}
],
2024-08-05 11:08:50 +08:00
"tabBar": {
"color": "#2c2c2c",
"selectedColor": "#1296db",
"borderStyle": "black",
"backgroundColor": "#FFFFFF",
"iconWidth": "24px",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/home.png",
"selectedIconPath": "static/homeSelected.png",
"text": "首页"
},
{
"pagePath": "pages/user/user",
"iconPath": "static/my.png",
"selectedIconPath": "static/mySelected.png",
"text": "个人中心"
}
]
},
2024-08-05 09:23:52 +08:00
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
}