app.json 954 B

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