{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/index/index", "style": { // "navigationBarTitleText": "啊啊啊" } }, { "path": "pages/home/home", "style": { "navigationBarTitleText": "首页" } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "你好啊", "navigationBarBackgroundColor": "#ff0000", // "backgroundColor": "#ffff00", "enablePullDownRefresh": true, "backgroundTextStyle": "light", "usingComponents": { "van-button": "/wxcomponents/vant/button/index", "van-rate": "/wxcomponents/vant/rate/index" } }, "tabBar": { "color": "#000000", "selectedColor": "#ff0000", "borderStyle": "black", "backgroundColor": "#ffffff", "list": [{ "pagePath": "pages/index/index", "text": "基础", "iconPath": "/static/me.png", "selectedIconPath": "/static/me_actived.png" }, { "pagePath": "pages/home/home", "text": "首页", "iconPath": "/static/home.png", "selectedIconPath": "/static/home_actived.png" }] }, "uniIdRouter": {} }