app.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "pages": [
  3. "pages/main/main",
  4. "pages/foodDetail/foodDetail",
  5. "pages/recommendFood/recommendFood",
  6. "pages/noticeDetail/noticeDetail",
  7. "pages/notice/notice",
  8. "pages/scenicDetail/scenicDetail",
  9. "pages/scenicList/scenicList",
  10. "pages/secondIntro/secondIntro",
  11. "pages/mainIntro/mainIntro",
  12. "pages/map/map",
  13. "pages/strategy/strategy"
  14. ],
  15. "permission": {
  16. "scope.userLocation": {
  17. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  18. }
  19. },
  20. "window": {
  21. "backgroundTextStyle": "light",
  22. "navigationBarBackgroundColor": "#fff",
  23. "navigationBarTitleText": "乡村旅游",
  24. "navigationBarTextStyle": "black"
  25. },
  26. "tabBar": {
  27. "color": "#333",
  28. "selectedColor": "#d43c33",
  29. "backgroundColor": "#fff",
  30. "list": [
  31. {
  32. "pagePath": "pages/map/map",
  33. "iconPath": "images/nav.png",
  34. "selectedIconPath": "images/navSelect.png",
  35. "text": "导航"
  36. },
  37. {
  38. "pagePath": "pages/main/main",
  39. "iconPath": "images/home.png",
  40. "selectedIconPath": "images/homeSelect.png",
  41. "text": "主页"
  42. },
  43. {
  44. "pagePath": "pages/strategy/strategy",
  45. "iconPath": "images/strategy.png",
  46. "selectedIconPath": "images/strategySelect.png",
  47. "text": "攻略"
  48. }
  49. ]
  50. },
  51. "lazyCodeLoading": "requiredComponents",
  52. "style": "v2",
  53. "sitemapLocation": "sitemap.json"
  54. }