app.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/my/my",
  5. "pages/list/list",
  6. "pages/detail/detail"
  7. ],
  8. "window": {
  9. "navigationBarTextStyle": "white",
  10. "navigationBarTitleText": "基础",
  11. "navigationBarBackgroundColor": "#f00",
  12. "navigationStyle": "default",
  13. "backgroundTextStyle": "light"
  14. },
  15. "tabBar": {
  16. "custom": false,
  17. "color": "#000000",
  18. "selectedColor": "#ff0000",
  19. "backgroundColor": "#fff",
  20. "list": [
  21. {
  22. "pagePath": "pages/home/home",
  23. "text": "首页",
  24. "iconPath": "/icons/home.png",
  25. "selectedIconPath": "/icons/homeActive.png"
  26. },
  27. {
  28. "pagePath": "pages/list/list",
  29. "text": "列表",
  30. "iconPath": "/icons/list.png",
  31. "selectedIconPath": "/icons/listActive.png"
  32. },
  33. {
  34. "pagePath": "pages/my/my",
  35. "text": "我的",
  36. "iconPath": "/icons/my.png",
  37. "selectedIconPath": "/icons/myActive.png"
  38. }
  39. ]
  40. },
  41. "style": "v2",
  42. "componentFramework": "glass-easel",
  43. "sitemapLocation": "sitemap.json",
  44. "lazyCodeLoading": "requiredComponents"
  45. }