app.json 918 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. "usingComponents": {
  16. "navBar": "/components/navBar/navBar"
  17. },
  18. "tabBar": {
  19. "backgroundColor": "#fff",
  20. "list": [{
  21. "pagePath": "pages/index/index",
  22. "text": "",
  23. "iconPath": "img/home2.png",
  24. "selectedIconPath": "img/home.png"
  25. }, {
  26. "pagePath": "pages/my/index",
  27. "text": "",
  28. "iconPath": "img/user2.png",
  29. "selectedIconPath": "img/user.png"
  30. }]
  31. },
  32. "permission": {
  33. "scope.userLocation": {
  34. "desc": "您的位置信息将用于查找附近的Coffee Talk"
  35. }
  36. },
  37. "style": "v2",
  38. "sitemapLocation": "sitemap.json"
  39. }