pages.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. "path": "pages/webview/index",
  41. "style": {
  42. "navigationBarTitleText": ""
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "筛查中心",
  49. "navigationBarBackgroundColor": "#ffffff",
  50. "backgroundColor": "#ffffff"
  51. },
  52. "tabBar": {
  53. "color": "#B2B6BE",
  54. "selectedColor": "#10AEFF",
  55. "borderStyle": "white",
  56. "list": [{
  57. "pagePath": "pages/index/index",
  58. "text": "筛查报告",
  59. "iconPath": "static/tabbar/record.png",
  60. "selectedIconPath": "static/tabbar/record_on.png"
  61. },
  62. {
  63. "pagePath": "pages/my/index",
  64. "text": "个人中心",
  65. "iconPath": "static/tabbar/mine.png",
  66. "selectedIconPath": "static/tabbar/mine_on.png"
  67. }
  68. ]
  69. },
  70. "window": {
  71. "navigationBarBackgroundColor": "#fff",
  72. "navigationBarTextStyle": "black"
  73. }
  74. }