1
0

pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. "path" : "pages/user/bind/index",
  97. "style" :
  98. {
  99. "navigationBarTitleText" : "我的就诊人"
  100. }
  101. },
  102. {
  103. "path" : "pages/user/bind/add",
  104. "style" :
  105. {
  106. "navigationBarTitleText" : "绑定就诊人"
  107. }
  108. }
  109. ],
  110. "tabBar": {
  111. "color": "#7A7E83",
  112. "selectedColor": "#4581fb",
  113. "borderStyle": "black",
  114. "backgroundColor": "#F8F8F8",
  115. "list": [{
  116. "pagePath": "pages/index/index",
  117. "iconPath": "static/tab/sy.png",
  118. "selectedIconPath": "static/tab/sy_s.png",
  119. "text": "首页"
  120. },
  121. {
  122. "pagePath": "pages/user/index",
  123. "iconPath": "static/tab/my.png",
  124. "selectedIconPath": "static/tab/my_s.png",
  125. "text": "我的"
  126. }
  127. ]
  128. },
  129. "globalStyle": {
  130. "navigationBarTextStyle": "black",
  131. "navigationBarTitleText": "岑溪人民医院",
  132. "navigationBarBackgroundColor": "#f1f1f1"
  133. }
  134. }