app.json 985 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/car/car",
  5. "pages/my/my"
  6. ],
  7. "window": {
  8. "navigationBarTextStyle": "white",
  9. "navigationBarTitleText": "小程序",
  10. "navigationBarBackgroundColor": "#ff0000",
  11. "navigationStyle": "default"
  12. },
  13. "tabBar": {
  14. "custom": false,
  15. "color": "#000000",
  16. "selectedColor": "#ff0000",
  17. "backgroundColor": "#ffffff",
  18. "list": [{
  19. "pagePath": "pages/home/home",
  20. "text": "首页",
  21. "iconPath": "/icon/home.png",
  22. "selectedIconPath": "/icon/home1.png"
  23. }, {
  24. "pagePath": "pages/car/car",
  25. "text": "购物车",
  26. "iconPath": "/icon/shop.png",
  27. "selectedIconPath": "/icon/shop1.png"
  28. }, {
  29. "pagePath": "pages/my/my",
  30. "text": "我的",
  31. "iconPath": "/icon/my.png",
  32. "selectedIconPath": "/icon/my1.png"
  33. }]
  34. },
  35. "style": "v2",
  36. "componentFramework": "glass-easel",
  37. "sitemapLocation": "sitemap.json",
  38. "lazyCodeLoading": "requiredComponents"
  39. }