1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "pages": [
- "pages/index/index",
- "pages/detail/index",
- "pages/add/index",
- "pages/my/index"
- ],
- "window": {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#fff",
- "navigationBarTitleText": "Coffee Talk",
- "navigationBarTextStyle": "black"
- },
- "usingComponents": {
- "navBar": "/components/navBar/navBar"
- },
- "tabBar": {
- "backgroundColor": "#fff",
- "list": [{
- "pagePath": "pages/index/index",
- "text": "",
- "iconPath": "img/home2.png",
- "selectedIconPath": "img/home.png"
- }, {
- "pagePath": "pages/my/index",
- "text": "",
- "iconPath": "img/user2.png",
- "selectedIconPath": "img/user.png"
- }]
- },
- "permission": {
- "scope.userLocation": {
- "desc": "您的位置信息将用于查找附近的Coffee Talk"
- }
- },
- "style": "v2",
- "sitemapLocation": "sitemap.json"
- }
|