app.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/voyages/voyages",
  5. "pages/me/me",
  6. "pages/login/login",
  7. "pages/voyages/detail/detail",
  8. "pages/sharePage/sharePage"
  9. ],
  10. "window": {
  11. "backgroundColor": "#F6F6F6",
  12. "backgroundTextStyle": "light",
  13. "navigationBarBackgroundColor": "#F6F6F6",
  14. "navigationBarTitleText": "汇很多",
  15. "navigationBarTextStyle": "black"
  16. },
  17. "tabBar": {
  18. "list": [{
  19. "pagePath": "pages/index/index",
  20. "text": "首页",
  21. "iconPath": "images/tabBar/index.png",
  22. "selectedIconPath": "images/tabBar/index-c.png"
  23. },
  24. {
  25. "pagePath": "pages/voyages/voyages",
  26. "text": "航次",
  27. "iconPath": "images/tabBar/voyage.png",
  28. "selectedIconPath": "images/tabBar/voyage-c.png"
  29. },
  30. {
  31. "pagePath": "pages/me/me",
  32. "text": "我",
  33. "iconPath": "images/tabBar/user.png",
  34. "selectedIconPath": "images/tabBar/user-c.png"
  35. }
  36. ]
  37. },
  38. "permission": {
  39. "scope.userLocation": {
  40. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  41. }
  42. },
  43. "sitemapLocation": "sitemap.json",
  44. "style": "v2"
  45. }