2023-10-08 21:21:21 +08:00
|
|
|
|
{
|
|
|
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
|
|
|
{
|
|
|
|
|
"path": "pages/index/index",
|
|
|
|
|
"style": {
|
|
|
|
|
"navigationBarTitleText": "首页"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "pages/wikipedia/index",
|
|
|
|
|
"style": {
|
|
|
|
|
"navigationBarTitleText": "百科"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "pages/user/index",
|
|
|
|
|
"style": {
|
|
|
|
|
"navigationBarTitleText": "我的"
|
|
|
|
|
}
|
2023-10-18 21:00:42 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "pages/login/login",
|
|
|
|
|
"style": {
|
|
|
|
|
"navigationBarTitleText": "登录"
|
|
|
|
|
}
|
2023-10-08 21:21:21 +08:00
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"globalStyle": {
|
2023-10-18 21:00:42 +08:00
|
|
|
|
"navigationBarTextStyle": "white",
|
2023-10-08 21:21:21 +08:00
|
|
|
|
"navigationBarTitleText": "uni-app",
|
2023-10-18 21:00:42 +08:00
|
|
|
|
"navigationBarBackgroundColor": "#26758d",
|
2023-10-08 21:21:21 +08:00
|
|
|
|
"backgroundColor": "#F8F8F8"
|
|
|
|
|
},
|
|
|
|
|
"uniIdRouter": {},
|
|
|
|
|
"tabBar": {
|
|
|
|
|
"color": "#999999",
|
|
|
|
|
"selectedColor": "#26758d",
|
|
|
|
|
"borderStyle": "black",
|
|
|
|
|
"backgroundColor": "#ffffff",
|
|
|
|
|
"height": "50px",
|
|
|
|
|
"fontSize": "10px",
|
|
|
|
|
"iconWidth": "20px",
|
|
|
|
|
"spacing": "3px",
|
|
|
|
|
"list": [{
|
|
|
|
|
"pagePath": "pages/index/index",
|
|
|
|
|
"iconPath": "static/tabs/home.png",
|
|
|
|
|
"selectedIconPath": "static/tabs/home2.png",
|
|
|
|
|
"text": "首页"
|
|
|
|
|
}, {
|
|
|
|
|
"pagePath": "pages/wikipedia/index",
|
|
|
|
|
"iconPath": "static/tabs/order.png",
|
|
|
|
|
"selectedIconPath": "static/tabs/order2.png",
|
|
|
|
|
"text": "百科"
|
|
|
|
|
}, {
|
|
|
|
|
"pagePath": "pages/user/index",
|
|
|
|
|
"iconPath": "static/tabs/user.png",
|
|
|
|
|
"selectedIconPath": "static/tabs/user2.png",
|
|
|
|
|
"text": "我的"
|
|
|
|
|
}]
|
|
|
|
|
}
|
|
|
|
|
}
|