pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "智疗助手",
  7. "enablePullDownRefresh": true,
  8. "navigationStyle": "custom",
  9. "navigationBarBackgroundColor": "#ffffff"
  10. }
  11. },
  12. {
  13. "path" : "pages/login/login",
  14. "style" :
  15. {
  16. "navigationBarTitleText" : "登陆",
  17. "navigationBarBackgroundColor": "#1678ff",
  18. "navigationBarTextStyle": "white"
  19. }
  20. },
  21. {
  22. "path" : "pages/my/my",
  23. "style" :
  24. {
  25. "navigationBarTitleText" : "我的",
  26. "enablePullDownRefresh": true,
  27. "navigationBarTextStyle": "white",
  28. "navigationBarBackgroundColor": "#1678ff"
  29. }
  30. },
  31. {
  32. "path" : "pages/test/test",
  33. "style" :
  34. {
  35. "navigationBarTitleText" : ""
  36. }
  37. },
  38. {
  39. "path" : "pages/BMI/BMI",
  40. "style" :
  41. {
  42. "navigationBarTitleText" : "BMI计算",
  43. "navigationBarBackgroundColor": "#ffffff",
  44. "navigationBarTextStyle": "black"
  45. }
  46. },
  47. {
  48. "path" : "pages/img_process/img_process",
  49. "style" :
  50. {
  51. "navigationBarTitleText" : "病例识别"
  52. }
  53. },
  54. {
  55. "path" : "pages/BMI/BMI_output/BMI_output",
  56. "style" :
  57. {
  58. "navigationBarTitleText" : "BMI计算结果",
  59. "navigationBarBackgroundColor": "#ffffff",
  60. "navigationBarTextStyle": "black"
  61. }
  62. },
  63. {
  64. "path" : "pages/BMI/BMI_history/BMI_history",
  65. "style" :
  66. {
  67. "navigationBarTitleText" : "BMI 记录",
  68. "navigationBarBackgroundColor": "#f1f3f2"
  69. }
  70. },
  71. {
  72. "path" : "pages/my/user_info/user_info",
  73. "style" :
  74. {
  75. "navigationBarTitleText" : "个人资料",
  76. "enablePullDownRefresh": true,
  77. "navigationBarTextStyle": "white",
  78. "navigationBarBackgroundColor": "#1678ff"
  79. }
  80. },
  81. {
  82. "path" : "pages/ai/ai",
  83. "style" :
  84. {
  85. "navigationBarTitleText" : ""
  86. }
  87. }
  88. ],
  89. "globalStyle": {
  90. "navigationBarTextStyle": "black",
  91. "navigationBarTitleText": "首页",
  92. "navigationBarBackgroundColor": "#ffffff"
  93. },
  94. "tabBar": {
  95. "borderStyle": "black",
  96. "backgroundColor": "#fafbff",
  97. "selectedColor": "#1296db",
  98. "iconWidth": "20px",
  99. "fontSize": "10px",
  100. "list": [
  101. {
  102. "pagePath": "pages/ai/ai",
  103. "text": "AI",
  104. "iconPath": "/static/tabs/ai-icon.png",
  105. "selectedIconPath": "/static/tabs/ai-icon-c.png"
  106. },
  107. {
  108. "pagePath": "pages/index/index",
  109. "text": "首页",
  110. "iconPath": "/static/tabs/home-icon.png",
  111. "selectedIconPath": "/static/tabs/home-icon-c.png"
  112. },
  113. {
  114. "pagePath": "pages/my/my",
  115. "text": "我的",
  116. "iconPath": "/static/tabs/user-icon.png",
  117. "selectedIconPath": "/static/tabs/user-icon-c.png"
  118. }
  119. ]
  120. },
  121. "uniIdRouter": {}
  122. }