Files
miniapp/pages.json
T
2023-08-30 09:44:26 +08:00

82 lines
2.1 KiB
JSON

{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
// {
// "path": "pages/login/login",
// "style": {
// "navigationBarTitleText": "登录页面",
// "navigationBarBackgroundColor": "#d11c1c",
// "navigationBarTextStyle": "white"
// }
// },
{
"path": "pages/home/index",
"style": {
"navigationBarTitleText": "首页",
"navigationBarBackgroundColor": "#d11c1c",
"navigationBarTextStyle": "white"
}
}, {
"path": "pages/my/my",
"style": {
"navigationBarTitleText": "我的",
"navigationBarBackgroundColor": "#449bd1",
"enablePullDownRefresh": false,
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/message/message",
"style": {
"navigationBarTitleText": "消息",
"navigationBarBackgroundColor": "#d11c1c",
"enablePullDownRefresh": false,
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/communicate/communicate",
"style": {
"navigationBarTitleText": "沟通",
"navigationBarBackgroundColor": "#d11c1c",
"enablePullDownRefresh": false,
"navigationBarTextStyle": "white"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#1296db",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/home/index",
"iconPath": "static/home.png",
"selectedIconPath": "static/homeselect.png",
"text": "首页"
},
{
"pagePath": "pages/message/message",
"iconPath": "static/goutong.png",
"selectedIconPath": "static/goutong1.png",
"text": "消息"
},
{
"pagePath": "pages/communicate/communicate",
"iconPath": "static/kefu.png",
"selectedIconPath": "static/kefu1.png",
"text": "沟通"
}, {
"pagePath": "pages/my/my",
"iconPath": "static/my.png",
"selectedIconPath": "static/myselect.png",
"text": "我的"
}
]
}
}