{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/home/index", "style": { "navigationBarTitleText": "首页" } }, { "path": "pages/my/index", "style": { "navigationBarTitleText": "我的" } }, { "path": "pages/list/index", "style": { "navigationBarTitleText": "列表" } }, { "path": "pages/detail/index", "style": { "navigationBarTitleText": "详情" } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8", "enablePullDownRefresh": true, // "onReachBottomDistance": 3 "usingComponents": { "van-button": "/wxcomponents/vant/button/index", "van-icon": "/wxcomponents/vant/icon/index" } }, "tabBar": { "color": "#000", "selectedColor": "#f00", "borderStyle": "black", "backgroundColor": "#ffffff", "list": [{ "pagePath": "pages/home/index", "iconPath": "/static/home.png", "selectedIconPath": "/static/home_actived.png", "text": "首页" }, { "pagePath": "pages/list/index", "iconPath": "/static/film.png", "selectedIconPath": "/static/film_actived.png", "text": "列表" }, { "pagePath": "pages/my/index", "iconPath": "/static/me.png", "selectedIconPath": "/static/me_actived.png", "text": "我的" }] }, "uniIdRouter": {} }