pages.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "岑溪人民医院",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/user/index",
  15. "style": {
  16. "navigationBarTitleText": "我的",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path": "pages/knowledge/index",
  22. "style": {
  23. "navigationBarTitleText": "健康知识库"
  24. }
  25. },
  26. {
  27. "path": "pages/knowledge/detail",
  28. "style": {
  29. "navigationBarTitleText": "知识详情"
  30. }
  31. },
  32. {
  33. "path": "pages/introduction/index",
  34. "style": {
  35. "navigationBarTitleText": "医院介绍"
  36. }
  37. },
  38. {
  39. "path": "pages/doctor/index",
  40. "style": {
  41. "navigationBarTitleText": "医生介绍"
  42. }
  43. },
  44. {
  45. "path": "pages/follow/detail",
  46. "style": {
  47. "navigationBarTitleText": "随访详情"
  48. }
  49. },
  50. {
  51. "path": "pages/user/login",
  52. "style": {
  53. "navigationBarTitleText": "用户登录"
  54. }
  55. },
  56. {
  57. "path": "pages/other/agreement",
  58. "style": {
  59. "navigationBarTitleText": "协议"
  60. }
  61. },
  62. {
  63. "path": "pages/user/info",
  64. "style": {
  65. "navigationBarTitleText": "我的信息"
  66. }
  67. },
  68. {
  69. "path": "pages/other/setting",
  70. "style": {
  71. "navigationBarTitleText": "设置"
  72. }
  73. },
  74. {
  75. "path" : "pages/follow/index",
  76. "style" :
  77. {
  78. "navigationBarTitleText" : "我的回访"
  79. }
  80. },
  81. {
  82. "path" : "pages/department/index",
  83. "style" :
  84. {
  85. "navigationBarTitleText" : "科室介绍"
  86. }
  87. },
  88. {
  89. "path" : "pages/doctor/detail",
  90. "style" :
  91. {
  92. "navigationBarTitleText" : "医生介绍"
  93. }
  94. }
  95. ],
  96. "tabBar": {
  97. "color": "#7A7E83",
  98. "selectedColor": "#4581fb",
  99. "borderStyle": "black",
  100. "backgroundColor": "#F8F8F8",
  101. "list": [{
  102. "pagePath": "pages/index/index",
  103. "iconPath": "static/tab/sy.png",
  104. "selectedIconPath": "static/tab/sy_s.png",
  105. "text": "首页"
  106. },
  107. {
  108. "pagePath": "pages/user/index",
  109. "iconPath": "static/tab/my.png",
  110. "selectedIconPath": "static/tab/my_s.png",
  111. "text": "我的"
  112. }
  113. ]
  114. },
  115. "globalStyle": {
  116. "navigationBarTextStyle": "black",
  117. "navigationBarTitleText": "岑溪人民医院",
  118. "navigationBarBackgroundColor": "#f1f1f1"
  119. }
  120. }