| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
-
- {
- "pages": [
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path": "pages/product/index",
- "style": {
- "navigationBarTitleText": "产品",
- "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path": "pages/device/index",
- "style": {
- "navigationBarTitleText": "设备",
- "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationBarBackgroundColor": "#7FB8A2"
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path": "pages/devices/index",
- "style": {
- "navigationBarTitleText": "电站列表",
- "backgroundColor": "#7FB8A2",
- "navigationBarBackgroundColor": "#7FB8A2",
- "navigationBarTextStyle": "white"
- // "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path": "pages/powerstation/index",
- "style": {
- "navigationBarTitleText": "电站详情",
- "backgroundColor": "#7FB8A2",
- "navigationBarBackgroundColor": "#7FB8A2",
- "navigationBarTextStyle": "white"
- // "navigationStyle": "custom" // 取消默认导航栏
- }
- },{
- "path": "pages/hostdetails/index",
- "style": {
- "navigationBarTitleText": "主机详情",
- "backgroundColor": "#7FB8A2",
- "navigationBarBackgroundColor": "#7FB8A2",
- "navigationBarTextStyle": "white"
- // "navigationStyle": "custom" // 取消默认导航栏
- }
- },{
- "path": "pages/strategy/index",
- "style": {
- "navigationBarTitleText": "策略详情",
- "backgroundColor": "#7FB8A2",
- "navigationBarBackgroundColor": "#7FB8A2",
- "navigationBarTextStyle": "white"
- // "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path" : "pages/devicedetails/index",
- "style" :
- {
- "navigationBarTitleText" : "设备详情"
- }
- },
- {
- "path" : "pages/deviceslist/index",
- "style" :
- {
- "navigationBarTitleText" : "设备列表"
- }
- },
- {
- "path" : "pages/personalInformation/index",
- "style" :
- {
- "navigationBarTitleText" : "个人信息"
- }
- },
- {
- "path" : "pages/electricityprice/index",
- "style" :
- {
- "navigationBarTitleText" : "查询电价",
- "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path" : "pages/economiccalculation/index",
- "style" :
- {
- "navigationBarTitleText" : "经济测算",
- "navigationStyle": "custom" // 取消默认导航栏
- }
- },
- {
- "path" : "pages/report/index",
- "style" :
- {
- "navigationBarTitleText" : "经济测算报告",
- "navigationStyle": "custom" // 取消默认导航栏
- }
- }
-
- ],
- "tabBar": {
- "color": "#999999",
- "selectedColor": "#007545",
- "backgroundColor": "#ffffff",
- "borderStyle": "black",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png"
- },
- {
- "pagePath": "pages/product/index",
- "text": "产品",
- "iconPath": "static/tabbar/product.png",
- "selectedIconPath": "static/tabbar/product-active.png"
- },
- {
- "pagePath": "pages/device/index",
- "text": "设备",
- "iconPath": "static/tabbar/device.png",
- "selectedIconPath": "static/tabbar/device-active.png"
- },
- {
- "pagePath": "pages/user/index",
- "text": "我的",
- "iconPath": "static/tabbar/user.png",
- "selectedIconPath": "static/tabbar/user-active.png"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {
- "needLogin": true, // 是否需要登录
- "loginPage": "pages/login/index", // 登录页面路径
- "permission": {
- "pages/index/index": ["index"], // 首页需要用户权限
- "pages/product/index": ["product"], // 产品页需要用户权限
- "pages/device/index": ["device"], // 设备页需要用户权限
- "pages/user/index": ["user"] // 我的页面需要用户权限
- }
- }
- }
|