pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path" : "pages/danger/index",
  11. "style" :
  12. {
  13. "navigationBarTitleText" : "隐患管理"
  14. }
  15. },
  16. {
  17. "path" : "pages/industry/index",
  18. "style" :
  19. {
  20. "navigationBarTitleText" : "行业管理"
  21. }
  22. },
  23. {
  24. "path" : "pages/myCenter/index",
  25. "style" :
  26. {
  27. "navigationBarTitleText": "我的",
  28. "navigationBarBackgroundColor":"#3D90F4",
  29. "enablePullDownRefresh": false,
  30. "navigationStyle": "custom"
  31. }
  32. },
  33. {
  34. "path" : "pages/myCenter/personalData/personalData",
  35. "style" :
  36. {
  37. "navigationBarTitleText": "个人资料",
  38. "enablePullDownRefresh": false
  39. }
  40. }
  41. ,{
  42. "path" : "pages/myCenter/updatePassword/updatePassword",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "修改密码",
  46. "enablePullDownRefresh": false
  47. }
  48. },
  49. {
  50. "path" : "pages/disaster/index",
  51. "style" :
  52. {
  53. "navigationBarTitleText" : "自然灾害"
  54. }
  55. },
  56. {
  57. "path" : "pages/duty/index",
  58. "style" :
  59. {
  60. "navigationBarTitleText" : "应急值守"
  61. }
  62. },
  63. {
  64. "path" : "pages/team/index",
  65. "style" :
  66. {
  67. "navigationBarTitleText" : "队伍建设"
  68. }
  69. },
  70. {
  71. "path" : "pages/goods/index",
  72. "style" :
  73. {
  74. "navigationBarTitleText" : "物资储备"
  75. }
  76. },
  77. {
  78. "path" : "pages/login/index",
  79. "style" :
  80. {
  81. "navigationBarTitleText" : "登录"
  82. }
  83. }
  84. ],
  85. "globalStyle": {
  86. "navigationBarTextStyle": "black",
  87. "navigationBarTitleText": "智慧创新",
  88. "navigationBarBackgroundColor": "#F8F8F8",
  89. "backgroundColor": "#F8F8F8"
  90. },
  91. "tabBar": {
  92. "color": "#7A7E83",
  93. "selectedColor": "#1296db",
  94. "borderStyle": "black",
  95. "backgroundColor": "#ffffff",
  96. "iconWidth": "24px",
  97. "list": [{
  98. "pagePath": "pages/index/index",
  99. "iconPath": "static/tabbar/index.png",
  100. "selectedIconPath": "static/tabbar/indexEd.png",
  101. "text": "首页"
  102. },
  103. {
  104. "pagePath": "pages/myCenter/index",
  105. "iconPath": "static/tabbar/myCenter.png",
  106. "selectedIconPath": "static/tabbar/myCenterEd.png",
  107. "text": "我的",
  108. "style" :
  109. {
  110. "navigationBarTitleText": "我的",
  111. "navigationBarBackgroundColor":"#3D90F4",
  112. "enablePullDownRefresh": false,
  113. "navigationStyle": "custom"
  114. }
  115. }]
  116. },
  117. "uniIdRouter": {}
  118. }