app.json 868 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/list/list"
  5. ],
  6. "window": {
  7. "navigationBarTextStyle": "white",
  8. "navigationBarTitleText": "你好",
  9. "navigationBarBackgroundColor": "#ff0000",
  10. "navigationStyle": "default"
  11. },
  12. "tabBar": {
  13. "custom": false,
  14. "color": "#000000",
  15. "selectedColor": "#ff0000",
  16. "backgroundColor": "#ffffff",
  17. "list": [
  18. {
  19. "pagePath": "pages/home/home",
  20. "text": "首页",
  21. "iconPath": "/icon/home.png",
  22. "selectedIconPath": "/icon/home1.png"
  23. },
  24. {
  25. "pagePath": "pages/list/list",
  26. "text": "列表",
  27. "iconPath": "/icon/shop.png",
  28. "selectedIconPath": "/icon/shop1.png"
  29. }
  30. ]
  31. },
  32. "usingComponents": {},
  33. "componentFramework": "glass-easel",
  34. "sitemapLocation": "sitemap.json",
  35. "lazyCodeLoading": "requiredComponents"
  36. }