| 12345678910111213141516171819202122232425262728293031 |
- {
- "pages": [
- "pages/home/home",
- "pages/my/my"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#B9D9FF"
- },
- "tabBar": {
- "backgroundColor": "#ffffff",
- "color": "#767676",
- "selectedColor": "#31B4FF",
- "list": [
- {
- "pagePath": "pages/home/home",
- "iconPath": "/static/imgs/home.png",
- "selectedIconPath": "/static/imgs/home-a.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/my/my",
- "iconPath": "/static/imgs/my.png",
- "selectedIconPath": "/static/imgs/my-a.png",
- "text": "我的"
- }
- ]
- },
- "usingComponents": {}
- }
|