| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "pages": [
- "pages/home/index",
- "pages/my/index",
- "pages/list/index",
- "pages/detail/index"
- ],
- "subPackages": [],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "enablePullDownRefresh": true
- },
- "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": "我的"
- }
- ]
- },
- "usingComponents": {
- "van-button": "/wxcomponents/vant/button/index",
- "van-icon": "/wxcomponents/vant/icon/index"
- }
- }
|