{ "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"] // 我的页面需要用户权限 } } }