pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. "tabBar": {
  47. "color": "#7A7E83",
  48. "selectedColor": "#4581fb",
  49. "borderStyle": "black",
  50. "backgroundColor": "#F8F8F8",
  51. "list": [{
  52. "pagePath": "pages/index/index",
  53. "iconPath": "static/tab/sy.png",
  54. "selectedIconPath": "static/tab/sy_s.png",
  55. "text": "首页"
  56. },
  57. {
  58. "pagePath": "pages/user/index",
  59. "iconPath": "static/tab/my.png",
  60. "selectedIconPath": "static/tab/my_s.png",
  61. "text": "我的"
  62. }
  63. ]
  64. },
  65. "globalStyle": {
  66. "navigationBarTextStyle": "black",
  67. "navigationBarTitleText": "岑溪人民医院",
  68. "navigationBarBackgroundColor": "#f1f1f1"
  69. }
  70. }