app.json 1.6 KB

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