pages.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "筛查报告"
  7. }
  8. },
  9. {
  10. "path": "pages/my/index",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/addPatient/index",
  17. "style": {
  18. "navigationBarTitleText": "添加学生"
  19. }
  20. },
  21. {
  22. "path": "pages/chart/index",
  23. "style": {
  24. "navigationBarTitleText": "健康分析"
  25. }
  26. },
  27. {
  28. "path": "pages/setting/index",
  29. "style": {
  30. "navigationBarTitleText": "个人设置"
  31. }
  32. },
  33. {
  34. "path": "pages/login/index",
  35. "style": {
  36. "navigationBarTitleText": "筛查中心"
  37. }
  38. }
  39. ],
  40. "globalStyle": {
  41. "navigationBarTextStyle": "black",
  42. "navigationBarTitleText": "筛查中心",
  43. "navigationBarBackgroundColor": "#ffffff",
  44. "backgroundColor": "#ffffff"
  45. },
  46. "tabBar": {
  47. "color": "#B2B6BE",
  48. "selectedColor": "#10AEFF",
  49. "borderStyle": "white",
  50. "list": [{
  51. "pagePath": "pages/index/index",
  52. "text": "筛查报告",
  53. "iconPath": "static/tabbar/record.png",
  54. "selectedIconPath": "static/tabbar/record_on.png"
  55. },
  56. {
  57. "pagePath": "pages/my/index",
  58. "text": "个人中心",
  59. "iconPath": "static/tabbar/mine.png",
  60. "selectedIconPath": "static/tabbar/mine_on.png"
  61. }
  62. ]
  63. },
  64. "window": {
  65. "navigationBarBackgroundColor": "#fff",
  66. "navigationBarTextStyle": "black"
  67. }
  68. }