pages.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. {
  42. "navigationBarTitleText" : "医生介绍"
  43. }
  44. },
  45. {
  46. "path" : "pages/follow/detail",
  47. "style" :
  48. {
  49. "navigationBarTitleText" : "随访详情"
  50. }
  51. },
  52. {
  53. "path" : "pages/user/login",
  54. "style" :
  55. {
  56. "navigationBarTitleText" : "用户登录"
  57. }
  58. }
  59. ],
  60. "tabBar": {
  61. "color": "#7A7E83",
  62. "selectedColor": "#4581fb",
  63. "borderStyle": "black",
  64. "backgroundColor": "#F8F8F8",
  65. "list": [{
  66. "pagePath": "pages/index/index",
  67. "iconPath": "static/tab/sy.png",
  68. "selectedIconPath": "static/tab/sy_s.png",
  69. "text": "首页"
  70. },
  71. {
  72. "pagePath": "pages/user/index",
  73. "iconPath": "static/tab/my.png",
  74. "selectedIconPath": "static/tab/my_s.png",
  75. "text": "我的"
  76. }
  77. ]
  78. },
  79. "globalStyle": {
  80. "navigationBarTextStyle": "black",
  81. "navigationBarTitleText": "岑溪人民医院",
  82. "navigationBarBackgroundColor": "#f1f1f1"
  83. }
  84. }