pages.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. }, {
  9. "path": "pages/userinfo/userinfo",
  10. "style": {
  11. "navigationBarTitleText": "基础资料",
  12. "enablePullDownRefresh": true
  13. }
  14. }, {
  15. "path": "pages/medication/medication",
  16. "style": {
  17. "navigationBarTitleText": "随访用药",
  18. "enablePullDownRefresh": true
  19. }
  20. }, {
  21. "path": "pages/eye_ground/eye_ground",
  22. "style": {
  23. "navigationBarTitleText": "眼底检查",
  24. "enablePullDownRefresh": true
  25. }
  26. }, {
  27. "path": "pages/home_monitoring/home_monitoring",
  28. "style": {
  29. "navigationBarTitleText": "健康监测",
  30. "enablePullDownRefresh": true
  31. }
  32. }, {
  33. "path": "pages/chart-model/chart-model",
  34. "style": {
  35. "navigationBarTitleText": "",
  36. "enablePullDownRefresh": false
  37. }
  38. }, {
  39. "path": "pages/health_report/health_report",
  40. "style": {
  41. "navigationBarTitleText": "健康报告",
  42. "enablePullDownRefresh": false
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "慢病报告",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8",
  51. "backgroundColorTop": "000"
  52. },
  53. "uniIdRouter": {}
  54. }