| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- // "navigationBarTitleText": "uni-app"
- }
- },
- {
- "path": "pages/logIn/login",
- "style": {
-
- }
- },
- {
- "path": "pages/register/register",
- "style": {
-
- }
- },
- {
- "path": "pages/home/home",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/basalMetabolism/basalMetabolism",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/dayCalorie/dayCalorie",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/heartRhythms/heartRhythms",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/bodyFatRatio/bodyFatRatio",
- "style": {
- "navigationStyle": "custom"
- }
- }
- ],
- "globalStyle": {
- "navigationStyle": "custom"
- // "navigationBarTextStyle": "white",
- // "navigationBarTitleText": "燃脂功能训练",
- // "navigationBarBackgroundColor": "rgb(115,164,164)",
- // "backgroundColor": "#F8F8F8",
- // "scrollIndicator": "none",
- // "app-plus":{
- // // "titleNView":false
- // "scrollIndicator":"none" //全局 在APP页面都不显示滚动条
- // }
- }
-
- }
|