| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- // {
- // "path": "pages/index/index",
- // "style": {
- // "navigationBarTitleText": "心率测试"
- // }
- // }
- // ,
- {
- "path": "pages/HeartRate/HeartRate",
- "style": {
- "navigationBarTitleText": "心率测试",
- "enablePullDownRefresh": false
-
- }
- },
- {
- "path": "pages/game/game",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "app-plus": {
- "titleNView": false,
- "subNVues": [{
- "id": "game",
- "path": "pages/game/subGame/subGame",
- "type": "popup",
- "style": {
- "width": "100%",
- // "height": "50%",
- "position": "absolute"
- }
- }]
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "心率测试",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|