app.json 895 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/list/list",
  5. "pages/detail/detail"
  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. {
  20. "pagePath": "pages/home/home",
  21. "text": "首页",
  22. "iconPath": "/icon/home.png",
  23. "selectedIconPath": "/icon/home1.png"
  24. },
  25. {
  26. "pagePath": "pages/list/list",
  27. "text": "列表",
  28. "iconPath": "/icon/shop.png",
  29. "selectedIconPath": "/icon/shop1.png"
  30. }
  31. ]
  32. },
  33. "usingComponents": {},
  34. "componentFramework": "glass-easel",
  35. "sitemapLocation": "sitemap.json",
  36. "lazyCodeLoading": "requiredComponents"
  37. }