pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "enablePullDownRefresh": false
  8. }
  9. },
  10. {
  11. "path": "pages/handleFile/handleFile",
  12. "style": {
  13. "navigationBarTitleText": "办文",
  14. "enablePullDownRefresh": false
  15. }
  16. },
  17. {
  18. "path" : "pages/handleMeeting/handleMeeting",
  19. "style" :
  20. {
  21. "navigationBarTitleText" : "办会",
  22. "enablePullDownRefresh": false
  23. }
  24. },
  25. {
  26. "path" : "pages/digitalHousing/digitalHousing",
  27. "style" :
  28. {
  29. "navigationBarTitleText" : "数字住建",
  30. "enablePullDownRefresh": false
  31. }
  32. },
  33. {
  34. "path" : "pages/noticeFile/noticeFile",
  35. "style" :
  36. {
  37. "navigationBarTitleText" : "通知文件",
  38. "enablePullDownRefresh": false
  39. }
  40. },
  41. {
  42. "path" : "pages/myOwn/myOwn",
  43. "style" :
  44. {
  45. "navigationBarTitleText" : "我的",
  46. "enablePullDownRefresh": false
  47. }
  48. },
  49. {
  50. "path" : "pages/information/information",
  51. "style" :
  52. {
  53. "navigationBarTitleText" : "information"
  54. }
  55. }
  56. ],
  57. "globalStyle": {
  58. "navigationBarTextStyle": "black",
  59. "navigationBarTitleText": "住建OA",
  60. "navigationBarBackgroundColor": "rgb(238,238,238)",
  61. "backgroundColor": "#F8F8F8",
  62. "navigationStyle": "custom"
  63. },
  64. "tabBar": {
  65. "color": "#999",
  66. "borderStyle": "black",
  67. "backgroundColor": "white",
  68. "selectedColor": "#0063d0",
  69. "list": [
  70. {
  71. "pagePath": "pages/handleFile/handleFile",
  72. "iconPath": "static/tabBarIcon/u86.svg",
  73. "selectedIconPath": "static/tabBarIcon/u86_selected.svg",
  74. "text": "办文"
  75. },
  76. {
  77. "pagePath": "pages/handleMeeting/handleMeeting",
  78. "iconPath": "static/tabBarIcon/u89.svg",
  79. "selectedIconPath": "static/tabBarIcon/u89_selected.svg",
  80. "text": "办会"
  81. },
  82. {
  83. "pagePath": "pages/digitalHousing/digitalHousing",
  84. "iconPath": "static/tabBarIcon/u92.svg",
  85. "selectedIconPath": "static/tabBarIcon/u92_selected.svg",
  86. "text": "数字住建"
  87. },
  88. {
  89. "pagePath": "pages/noticeFile/noticeFile",
  90. "iconPath": "static/tabBarIcon/u95.svg",
  91. "selectedIconPath": "static/tabBarIcon/u95_selected.svg",
  92. "text": "通知文件"
  93. },
  94. {
  95. "pagePath": "pages/myOwn/myOwn",
  96. "iconPath": "static/tabBarIcon/u98.svg",
  97. "selectedIconPath": "static/tabBarIcon/u98_selected.svg",
  98. "text": "我的"
  99. }
  100. ]
  101. },
  102. "uniIdRouter": {}
  103. }