app.json 985 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/index/index",
  5. "pages/logs/logs",
  6. "pages/member/member",
  7. "pages/orderDetail/orderDetail",
  8. "pages/feedback/feedback"
  9. ],
  10. "tabBar": {
  11. "color": "#666666",
  12. "selectedColor": "#333333",
  13. "borderStyle": "white",
  14. "backgroundColor": "#fff",
  15. "list": [
  16. {
  17. "pagePath": "pages/home/home",
  18. "iconPath": "images/nav/home-off.png",
  19. "selectedIconPath": "images/nav/home-on.png",
  20. "text": "首页"
  21. },
  22. {
  23. "pagePath": "pages/member/member",
  24. "iconPath": "images/nav/my-off.png",
  25. "selectedIconPath": "images/nav/my-on.png",
  26. "text": "个人中心"
  27. }
  28. ]
  29. },
  30. "window": {
  31. "backgroundTextStyle": "light",
  32. "navigationBarBackgroundColor": "#FFCAE0",
  33. "navigationBarTitleText": "Weixin",
  34. "navigationBarTextStyle": "black"
  35. },
  36. "style": "v2",
  37. "sitemapLocation": "sitemap.json",
  38. "lazyCodeLoading": "requiredComponents"
  39. }