pages.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. {
  24. "navigationBarTitleText" : "健康知识库"
  25. }
  26. },
  27. {
  28. "path" : "pages/knowledge/detail",
  29. "style" :
  30. {
  31. "navigationBarTitleText" : "知识详情"
  32. }
  33. }
  34. ],
  35. "tabBar": {
  36. "color": "#7A7E83",
  37. "selectedColor": "#4581fb",
  38. "borderStyle": "black",
  39. "backgroundColor": "#F8F8F8",
  40. "list": [{
  41. "pagePath": "pages/index/index",
  42. "iconPath": "static/tab/sy.png",
  43. "selectedIconPath": "static/tab/sy_s.png",
  44. "text": "首页"
  45. },
  46. {
  47. "pagePath": "pages/user/index",
  48. "iconPath": "static/tab/my.png",
  49. "selectedIconPath": "static/tab/my_s.png",
  50. "text": "我的"
  51. }
  52. ]
  53. },
  54. "globalStyle": {
  55. "navigationBarTextStyle": "black",
  56. "navigationBarTitleText": "岑溪人民医院",
  57. "navigationBarBackgroundColor": "#f1f1f1"
  58. }
  59. }