{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path" : "pages/index/index", "style" : {"navigationBarTitleText": "授权登录"} }, { "path": "pages/device/device", "style": {"navigationBarTitleText": "设备"} } ,{ "path" : "pages/about/about", "style" : {"navigationBarTitleText": "关于"} } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "设备管理", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8" }, "tabBar": { "backgroundColor": "#ffffff", "color": "#cdcdcd", "selectedColor": "#50B7EA", "borderStyle": "white", "list": [ { "pagePath": "pages/device/device", "iconPath": "static/device.png", "selectedIconPath": "static/device_active.png", "text": "设备" }, { "pagePath": "pages/about/about", "iconPath": "static/about.png", "selectedIconPath": "static/about_active.png", "text": "关于" } ] } }