123456789101112131415161718192021222324252627282930313233343536 |
- {
- "pages": [
- "pages/index/index",
- "pages/search/search",
- "pages/me/me"
- ],
- "window": {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#2E8B57",
- "navigationBarTitleText": "主页",
- "navigationBarTextStyle": "white"
- },
- "tabBar": {
- "color": "#ccc",
- "list": [{
- "pagePath": "pages/index/index",
- "text": "主页",
- "iconPath": "images/home_icon.png",
- "selectedIconPath": "images/home_active_icon.png"
- },
- {
- "pagePath": "pages/search/search",
- "text": "搜索",
- "iconPath": "images/search_icon.png",
- "selectedIconPath": "images/search_active_icon.png"
- },
- {
- "pagePath": "pages/me/me",
- "text": "我的",
- "iconPath": "images/my_icon.png",
- "selectedIconPath": "images/my_active_icon.png"
- }]
- },
- "style": "v2",
- "sitemapLocation": "sitemap.json"
- }
|