app.json 837 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/add/index",
  5. "pages/upload/index",
  6. "pages/detail/index",
  7. "pages/my/index"
  8. ],
  9. "window": {
  10. "backgroundTextStyle": "light",
  11. "navigationBarBackgroundColor": "#fff",
  12. "navigationBarTitleText": "Coffee Talk",
  13. "navigationBarTextStyle": "black"
  14. },
  15. "tabBar": {
  16. "custom": true,
  17. "list": [{
  18. "pagePath": "pages/index/index",
  19. "text": "",
  20. "iconPath": "img/home2.png",
  21. "selectedIconPath": "img/home.png"
  22. }, {
  23. "pagePath": "pages/my/index",
  24. "text": "",
  25. "iconPath": "img/user2.png",
  26. "selectedIconPath": "img/user.png"
  27. }]
  28. },
  29. "permission": {
  30. "scope.userLocation": {
  31. "desc": "您的位置信息将用于查找附近的Coffee Talk"
  32. }
  33. },
  34. "style": "v2",
  35. "sitemapLocation": "sitemap.json"
  36. }