1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "pages": [
- "pages/home/home",
- "pages/my/my",
- "pages/list/list"
- ],
- "window": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "基础",
- "navigationBarBackgroundColor": "#f00",
- "navigationStyle": "default",
- "backgroundTextStyle": "light"
- },
- "tabBar": {
- "custom": false,
- "color": "#000000",
- "selectedColor": "#ff0000",
- "backgroundColor": "#fff",
- "list": [
- {
- "pagePath": "pages/home/home",
- "text": "首页",
- "iconPath": "/icons/home.png",
- "selectedIconPath": "/icons/homeActive.png"
- },
- {
- "pagePath": "pages/list/list",
- "text": "列表",
- "iconPath": "/icons/list.png",
- "selectedIconPath": "/icons/listActive.png"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "/icons/my.png",
- "selectedIconPath": "/icons/myActive.png"
- }
- ]
- },
- "style": "v2",
- "componentFramework": "glass-easel",
- "sitemapLocation": "sitemap.json",
- "lazyCodeLoading": "requiredComponents"
- }
|