YNEduApp/pages.json

66 lines
1.3 KiB
JSON
Raw Normal View History

2024-08-05 09:23:52 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
2024-08-05 17:09:04 +08:00
{
"path" : "pages/login/login",
2024-08-05 18:02:29 +08:00
"style" :
2024-08-05 17:09:04 +08:00
{
"navigationStyle": "custom"
}
},
2024-08-05 09:23:52 +08:00
{
"path": "pages/index/index",
"style": {
2024-08-05 11:08:50 +08:00
"navigationBarTitleText": "首页"
}
},
{
"path" : "pages/user/user",
2024-08-05 18:02:29 +08:00
"style" :
2024-08-05 11:08:50 +08:00
{
2024-08-06 16:51:31 +08:00
"navigationStyle": "custom"
2024-08-05 09:23:52 +08:00
}
2024-08-05 17:09:04 +08:00
},
{
"path" : "pages/learnProj/learnProj",
2024-08-05 18:02:29 +08:00
"style" :
2024-08-05 17:09:04 +08:00
{
"navigationBarTitleText" : "学习项目"
}
2024-08-06 16:51:31 +08:00
},
{
"path" : "pages/user/settings",
"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",
2024-08-05 17:09:04 +08:00
"text": "我的"
2024-08-05 11:08:50 +08:00
}
]
},
2024-08-05 09:23:52 +08:00
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
}