云链智安app
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "navigationStyle": "custom" // 取消默认导航栏
  8. }
  9. },
  10. {
  11. "path": "pages/product/index",
  12. "style": {
  13. "navigationBarTitleText": "产品",
  14. "navigationStyle": "custom" // 取消默认导航栏
  15. }
  16. },
  17. {
  18. "path": "pages/device/index",
  19. "style": {
  20. "navigationBarTitleText": "设备",
  21. "navigationStyle": "custom" // 取消默认导航栏
  22. }
  23. },
  24. {
  25. "path": "pages/user/index",
  26. "style": {
  27. "navigationBarTitleText": "我的",
  28. "navigationBarBackgroundColor": "#7FB8A2"
  29. }
  30. },
  31. {
  32. "path": "pages/login/index",
  33. "style": {
  34. "navigationBarTitleText": "登录",
  35. "navigationStyle": "custom" // 取消默认导航栏
  36. }
  37. },
  38. {
  39. "path": "pages/devices/index",
  40. "style": {
  41. "navigationBarTitleText": "电站列表",
  42. "backgroundColor": "#7FB8A2",
  43. "navigationBarBackgroundColor": "#7FB8A2",
  44. "navigationBarTextStyle": "white"
  45. // "navigationStyle": "custom" // 取消默认导航栏
  46. }
  47. },
  48. {
  49. "path": "pages/powerstation/index",
  50. "style": {
  51. "navigationBarTitleText": "电站详情",
  52. "backgroundColor": "#7FB8A2",
  53. "navigationBarBackgroundColor": "#7FB8A2",
  54. "navigationBarTextStyle": "white"
  55. // "navigationStyle": "custom" // 取消默认导航栏
  56. }
  57. },{
  58. "path": "pages/hostdetails/index",
  59. "style": {
  60. "navigationBarTitleText": "主机详情",
  61. "backgroundColor": "#7FB8A2",
  62. "navigationBarBackgroundColor": "#7FB8A2",
  63. "navigationBarTextStyle": "white"
  64. // "navigationStyle": "custom" // 取消默认导航栏
  65. }
  66. },{
  67. "path": "pages/strategy/index",
  68. "style": {
  69. "navigationBarTitleText": "策略详情",
  70. "backgroundColor": "#7FB8A2",
  71. "navigationBarBackgroundColor": "#7FB8A2",
  72. "navigationBarTextStyle": "white"
  73. // "navigationStyle": "custom" // 取消默认导航栏
  74. }
  75. },
  76. {
  77. "path" : "pages/devicedetails/index",
  78. "style" :
  79. {
  80. "navigationBarTitleText" : "设备详情"
  81. }
  82. },
  83. {
  84. "path" : "pages/deviceslist/index",
  85. "style" :
  86. {
  87. "navigationBarTitleText" : "设备列表"
  88. }
  89. },
  90. {
  91. "path" : "pages/personalInformation/index",
  92. "style" :
  93. {
  94. "navigationBarTitleText" : "个人信息"
  95. }
  96. },
  97. {
  98. "path" : "pages/electricityprice/index",
  99. "style" :
  100. {
  101. "navigationBarTitleText" : "查询电价",
  102. "navigationStyle": "custom" // 取消默认导航栏
  103. }
  104. },
  105. {
  106. "path" : "pages/economiccalculation/index",
  107. "style" :
  108. {
  109. "navigationBarTitleText" : "经济测算",
  110. "navigationStyle": "custom" // 取消默认导航栏
  111. }
  112. },
  113. {
  114. "path" : "pages/report/index",
  115. "style" :
  116. {
  117. "navigationBarTitleText" : "经济测算报告",
  118. "navigationStyle": "custom" // 取消默认导航栏
  119. }
  120. }
  121. ],
  122. "tabBar": {
  123. "color": "#999999",
  124. "selectedColor": "#007545",
  125. "backgroundColor": "#ffffff",
  126. "borderStyle": "black",
  127. "list": [
  128. {
  129. "pagePath": "pages/index/index",
  130. "text": "首页",
  131. "iconPath": "static/tabbar/home.png",
  132. "selectedIconPath": "static/tabbar/home-active.png"
  133. },
  134. {
  135. "pagePath": "pages/product/index",
  136. "text": "产品",
  137. "iconPath": "static/tabbar/product.png",
  138. "selectedIconPath": "static/tabbar/product-active.png"
  139. },
  140. {
  141. "pagePath": "pages/device/index",
  142. "text": "设备",
  143. "iconPath": "static/tabbar/device.png",
  144. "selectedIconPath": "static/tabbar/device-active.png"
  145. },
  146. {
  147. "pagePath": "pages/user/index",
  148. "text": "我的",
  149. "iconPath": "static/tabbar/user.png",
  150. "selectedIconPath": "static/tabbar/user-active.png"
  151. }
  152. ]
  153. },
  154. "globalStyle": {
  155. "navigationBarTextStyle": "black",
  156. "navigationBarTitleText": "uni-app",
  157. "navigationBarBackgroundColor": "#F8F8F8",
  158. "backgroundColor": "#F8F8F8"
  159. },
  160. "uniIdRouter": {
  161. "needLogin": true, // 是否需要登录
  162. "loginPage": "pages/login/index", // 登录页面路径
  163. "permission": {
  164. "pages/index/index": ["index"], // 首页需要用户权限
  165. "pages/product/index": ["product"], // 产品页需要用户权限
  166. "pages/device/index": ["device"], // 设备页需要用户权限
  167. "pages/user/index": ["user"] // 我的页面需要用户权限
  168. }
  169. }
  170. }