app.json 1.2 KB

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