12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/home/home",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/list/list",
- "style": {
- "navigationBarTitleText": "列表",
- "enablePullDownRefresh": true,
- "onReachBottomDistance": 0
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "小程序",
- "navigationBarBackgroundColor": "#ff0000",
- // 下拉时窗口显示的背景色
- "backgroundColor": "#007aff",
- // "enablePullDownRefresh": true,
- "backgroundTextStyle": "dark",
- "usingComponents": {
- "van-button": "/wxcomponents/vant/button/index"
- }
- },
- // "onReachBottomDistance": ${1:0}
- "tabBar": {
- "color": "#000",
- "selectedColor": "#ff0000",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/home/home",
- "iconPath": "/static/home.png",
- "selectedIconPath": "/static/home_actived.png",
- "text": "首页"
- }, {
- "pagePath": "pages/list/list",
- "iconPath": "/static/film.png",
- "selectedIconPath": "/static/film_actived.png",
- "text": "列表"
- }]
- },
- "uniIdRouter": {}
- }
|