pages.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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/logIn/login",
  11. "style": {
  12. }
  13. },
  14. {
  15. "path": "pages/register/register",
  16. "style": {
  17. }
  18. },
  19. {
  20. "path": "pages/home/home",
  21. "style": {
  22. "navigationStyle": "custom"
  23. }
  24. },
  25. {
  26. "path": "pages/basalMetabolism/basalMetabolism",
  27. "style": {
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/dayCalorie/dayCalorie",
  33. "style": {
  34. "navigationStyle": "custom"
  35. }
  36. },
  37. {
  38. "path": "pages/heartRhythms/heartRhythms",
  39. "style": {
  40. "navigationStyle": "custom"
  41. }
  42. },
  43. {
  44. "path": "pages/bodyFatRatio/bodyFatRatio",
  45. "style": {
  46. "navigationStyle": "custom"
  47. }
  48. }
  49. ],
  50. "globalStyle": {
  51. "navigationStyle": "custom"
  52. // "navigationBarTextStyle": "white",
  53. // "navigationBarTitleText": "燃脂功能训练",
  54. // "navigationBarBackgroundColor": "rgb(115,164,164)",
  55. // "backgroundColor": "#F8F8F8",
  56. // "scrollIndicator": "none",
  57. // "app-plus":{
  58. // // "titleNView":false
  59. // "scrollIndicator":"none" //全局 在APP页面都不显示滚动条
  60. // }
  61. }
  62. }