pages.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. "path" : "pages/goods/record",
  86. "style" :
  87. {
  88. "navigationBarTitleText" : "出库/入库记录"
  89. }
  90. }
  91. ],
  92. "globalStyle": {
  93. "navigationBarTextStyle": "black",
  94. "navigationBarTitleText": "智慧创新",
  95. "navigationBarBackgroundColor": "#F8F8F8",
  96. "backgroundColor": "#F8F8F8"
  97. },
  98. "tabBar": {
  99. "color": "#7A7E83",
  100. "selectedColor": "#1296db",
  101. "borderStyle": "black",
  102. "backgroundColor": "#ffffff",
  103. "iconWidth": "24px",
  104. "list": [{
  105. "pagePath": "pages/index/index",
  106. "iconPath": "static/tabbar/index.png",
  107. "selectedIconPath": "static/tabbar/indexEd.png",
  108. "text": "首页"
  109. },
  110. {
  111. "pagePath": "pages/myCenter/index",
  112. "iconPath": "static/tabbar/myCenter.png",
  113. "selectedIconPath": "static/tabbar/myCenterEd.png",
  114. "text": "我的",
  115. "style" :
  116. {
  117. "navigationBarTitleText": "我的",
  118. "navigationBarBackgroundColor":"#3D90F4",
  119. "enablePullDownRefresh": false,
  120. "navigationStyle": "custom"
  121. }
  122. }]
  123. },
  124. "uniIdRouter": {}
  125. }