123456789101112131415161718192021222324252627282930313233343536 |
- {
- "pages": [
- "pages/home/home",
- "pages/list/list"
- ],
- "usingComponents": {
- "van-button": "/wxcomponents/vant/button/index"
- },
- "window": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "小程序",
- "navigationBarBackgroundColor": "#ff0000",
- "backgroundColor": "#007aff",
- "backgroundTextStyle": "dark"
- },
- "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": "列表"
- }
- ]
- }
- }
|