64 lines
1.4 KiB
JSON
64 lines
1.4 KiB
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path" : "pages/login/login",
|
||
"style" :
|
||
{
|
||
"navigationStyle":"custom"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/Workbench/Workbench",
|
||
"style": {
|
||
"navigationBarTitleText": "工作台"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/Me/Me",
|
||
"style": {
|
||
"navigationBarTitleText": "我的"
|
||
}
|
||
},
|
||
{
|
||
"path": "pages/Message/Message",
|
||
"style": {
|
||
"navigationBarTitleText": "消息"
|
||
}
|
||
}
|
||
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app",
|
||
"navigationBarBackgroundColor": "#F8F8F8",
|
||
"backgroundColor": "#F8F8F8"
|
||
},
|
||
"tabBar": {
|
||
"color": "#ccc",
|
||
"selectedColor": "#03A8F6",
|
||
"borderStyle": "black",
|
||
"backgroundColor": "#FFFFFF",
|
||
"list": [
|
||
{
|
||
"pagePath": "pages/Workbench/Workbench",
|
||
"iconPath": "static/tabbar/workbench.png",
|
||
"selectedIconPath": "static/tabbar/workbench._select.png",
|
||
"text": "工作台"
|
||
},
|
||
{
|
||
"pagePath": "pages/Message/Message",
|
||
"iconPath": "static/tabbar/message.png",
|
||
"selectedIconPath": "static/tabbar/message_select.png",
|
||
"text": "消息"
|
||
},
|
||
{
|
||
"pagePath": "pages/Me/Me",
|
||
"iconPath": "static/tabbar/me.png",
|
||
"selectedIconPath": "static/tabbar/me_select.png",
|
||
"text": "我的"
|
||
}
|
||
]
|
||
},
|
||
"uniIdRouter": {}
|
||
}
|