| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
-
- }
- }
- ,{
- "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": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|