1
0

pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "enablePullDownRefresh": true
  8. }
  9. },
  10. {
  11. "path": "pages/handleFile/handleFile",
  12. "style": {
  13. "navigationBarTitleText": "办文",
  14. "enablePullDownRefresh": true
  15. }
  16. },
  17. {
  18. "path" : "pages/handleMeeting/handleMeeting",
  19. "style" :
  20. {
  21. "navigationBarTitleText" : "办会",
  22. "enablePullDownRefresh": true
  23. }
  24. },
  25. {
  26. "path" : "pages/digitalHousing/digitalHousing",
  27. "style" :
  28. {
  29. "navigationBarTitleText" : "数字住建",
  30. "enablePullDownRefresh": true
  31. }
  32. },
  33. {
  34. "path" : "pages/noticeFile/noticeFile",
  35. "style" :
  36. {
  37. "navigationBarTitleText" : "通知文件",
  38. "enablePullDownRefresh": true
  39. }
  40. },
  41. {
  42. "path" : "pages/myOwn/myOwn",
  43. "style" :
  44. {
  45. "navigationBarTitleText" : "我的",
  46. "enablePullDownRefresh": true
  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. "pageOrientation": "landscape"
  64. },
  65. "tabBar": {
  66. "color": "#999",
  67. "borderStyle": "black",
  68. "backgroundColor": "white",
  69. "selectedColor": "#0063d0",
  70. "list": [
  71. {
  72. "pagePath": "pages/handleFile/handleFile",
  73. "iconPath": "static/tabBarIcon/u86.svg",
  74. "selectedIconPath": "static/tabBarIcon/u86_selected.svg",
  75. "text": "办文"
  76. },
  77. {
  78. "pagePath": "pages/handleMeeting/handleMeeting",
  79. "iconPath": "static/tabBarIcon/u89.svg",
  80. "selectedIconPath": "static/tabBarIcon/u89_selected.svg",
  81. "text": "办会"
  82. },
  83. {
  84. "pagePath": "pages/digitalHousing/digitalHousing",
  85. "iconPath": "static/tabBarIcon/u92.svg",
  86. "selectedIconPath": "static/tabBarIcon/u92_selected.svg",
  87. "text": "数字住建"
  88. },
  89. {
  90. "pagePath": "pages/noticeFile/noticeFile",
  91. "iconPath": "static/tabBarIcon/u95.svg",
  92. "selectedIconPath": "static/tabBarIcon/u95_selected.svg",
  93. "text": "通知文件"
  94. },
  95. {
  96. "pagePath": "pages/myOwn/myOwn",
  97. "iconPath": "static/tabBarIcon/u98.svg",
  98. "selectedIconPath": "static/tabBarIcon/u98_selected.svg",
  99. "text": "我的"
  100. }
  101. ]
  102. },
  103. "uniIdRouter": {}
  104. }