pages.json 991 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. }
  9. ,{
  10. "path" : "pages/game/game",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "",
  14. "enablePullDownRefresh": false,
  15. "app-plus": {
  16. "titleNView": false,
  17. "subNVues": [{
  18. "id": "game",
  19. "path": "pages/game/subGame/subGame",
  20. "type": "popup",
  21. "style": {
  22. "width": "100%",
  23. // "height": "50%",
  24. "position": "absolute"
  25. }
  26. }]
  27. }
  28. }
  29. }
  30. ],
  31. "globalStyle": {
  32. "navigationBarTextStyle": "black",
  33. "navigationBarTitleText": "uni-app",
  34. "navigationBarBackgroundColor": "#F8F8F8",
  35. "backgroundColor": "#F8F8F8"
  36. },
  37. "uniIdRouter": {}
  38. }