app.json 1.1 KB

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