pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "navigationStyle": "custom",
  8. "app-plus": {
  9. "softinputMode": "adjustResize",
  10. "navigationStyle": "custom"
  11. }
  12. }
  13. },
  14. {
  15. "path": "pages/homePage/index",
  16. "style": {
  17. "navigationBarTitleText": "首页",
  18. "app-plus": {
  19. "softinputMode": "adjustResize",
  20. "pullToRefresh": {
  21. "support": true
  22. }
  23. }
  24. }
  25. },
  26. {
  27. "path": "pages/reportForm/index",
  28. "style": {
  29. "navigationBarTitleText": "数据查询",
  30. "app-plus": {
  31. "softinputMode": "adjustResize",
  32. "pullToRefresh": {
  33. "support": true
  34. }
  35. }
  36. }
  37. },
  38. {
  39. "path": "pages/message/index",
  40. "style": {
  41. "navigationBarTitleText": "报警信息",
  42. "app-plus": {
  43. "softinputMode": "adjustResize",
  44. "pullToRefresh": {
  45. "support": true
  46. }
  47. }
  48. }
  49. },
  50. {
  51. "path": "pages/user/index",
  52. "style": {
  53. "navigationStyle": "custom",
  54. "app-plus": {
  55. "softinputMode": "adjustResize"
  56. }
  57. }
  58. },
  59. {
  60. "path": "pages/user/auth-level/index",
  61. "style": {
  62. "navigationBarTitleText": "权限等级",
  63. "app-plus": {
  64. "softinputMode": "adjustResize",
  65. "pullToRefresh": {
  66. "support": true
  67. }
  68. }
  69. }
  70. },
  71. {
  72. "path": "pages/user/edit-password/index",
  73. "style": {
  74. "navigationBarTitleText": "口令设置",
  75. "app-plus": {
  76. "softinputMode": "adjustResize",
  77. "pullToRefresh": {
  78. "support": true
  79. }
  80. }
  81. }
  82. },
  83. {
  84. "path": "pages/user/system-info/index",
  85. "style": {
  86. "navigationBarTitleText": "系统信息",
  87. "app-plus": {
  88. "softinputMode": "adjustResize",
  89. "pullToRefresh": {
  90. "support": true
  91. }
  92. }
  93. }
  94. },
  95. {
  96. "path": "pages/reportForm/report-detail/index",
  97. "style": {
  98. "navigationBarTitleText": "报表详情",
  99. "app-plus": {
  100. "softinputMode": "adjustResize",
  101. "titleNView": {
  102. "titleText": "报表详情"
  103. }
  104. }
  105. }
  106. },
  107. {
  108. "path": "pages/message/msg-detail/index",
  109. "style": {
  110. "navigationBarTitleText": "消息详情",
  111. "app-plus": {
  112. "softinputMode": "adjustResize"
  113. }
  114. }
  115. },
  116. {
  117. "path": "pages/reportForm/report-detail/recordDetail",
  118. "style": {
  119. "navigationBarTitleText": "运行详情",
  120. "app-plus": {
  121. "softinputMode": "adjustResize",
  122. "titleNView": {
  123. "titleText": "运行详情"
  124. }
  125. }
  126. }
  127. }
  128. ],
  129. "globalStyle": {
  130. "navigationBarTextStyle": "black",
  131. "navigationBarTitleText": "Easy Industrial Report",
  132. "navigationBarBackgroundColor": "#ffffff",
  133. "backgroundColor": "#2c3e50"
  134. },
  135. "tabBar": {
  136. "iconfontSrc": "static/fonts/iconfont.ttf",
  137. "fontSize": "13px",
  138. "height": "56px",
  139. "iconWidth": "23px",
  140. "list": [{
  141. "pagePath": "pages/homePage/index",
  142. "text": "首页",
  143. "iconPath": "./static/image/sy.png",
  144. "selectedIconPath": "./static/image/sy-sel.png"
  145. }, {
  146. "pagePath": "pages/reportForm/index",
  147. "text": "数据查询",
  148. "iconPath": "./static/image/sj.png",
  149. "selectedIconPath": "./static/image/sj-sel.png"
  150. }, {
  151. "pagePath": "pages/message/index",
  152. "text": "报警消息",
  153. "iconPath": "./static/image/bj.png",
  154. "selectedIconPath": "./static/image/bj-sel.png"
  155. }, {
  156. "pagePath": "pages/user/index",
  157. "text": "我的",
  158. "iconPath": "./static/image/user.png",
  159. "selectedIconPath": "./static/image/user-sel.png"
  160. }],
  161. "color": "#2c3e50"
  162. },
  163. "uniIdRouter": {}
  164. }