pages.json 1007 B

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