app.json 1.1 KB

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