pages.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. ,{
  34. "path" : "pages/chart-model/chart-model",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "",
  38. "enablePullDownRefresh": false
  39. }
  40. }
  41. ],
  42. "globalStyle": {
  43. "navigationBarTextStyle": "black",
  44. "navigationBarTitleText": "慢病报告",
  45. "navigationBarBackgroundColor": "#F8F8F8",
  46. "backgroundColor": "#F8F8F8"
  47. },
  48. "uniIdRouter": {}
  49. }