app.json 892 B

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