xinelu-doctor-app/pages.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2023-09-19 15:31:55 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
2023-10-23 09:30:36 +08:00
2023-09-19 15:31:55 +08:00
{
2023-10-23 09:30:36 +08:00
"path": "pages/homepage/homepage",
2023-09-19 15:31:55 +08:00
"style": {
2023-10-23 09:30:36 +08:00
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/myinformation/myinformation",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#4ac4ab"
// "navigationStyle": "custom"
2023-09-19 15:31:55 +08:00
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
2023-10-23 09:30:36 +08:00
"navigationBarTitleText": "",
2023-09-19 15:31:55 +08:00
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
2023-10-23 09:30:36 +08:00
"uniIdRouter": {},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#435950",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/homepage/homepage",
"iconPath": "static/homepage.png",
"selectedIconPath": "static/homepage.png",
"text": "首页"
},
{
"pagePath": "pages/myinformation/myinformation",
"iconPath": "static/myinformation.png",
"selectedIconPath": "static/myinformations.png",
"text": "我的"
}
]
}
2023-09-19 15:31:55 +08:00
}