app.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/list/list",
  5. "pages/my/my"
  6. ],
  7. "window": {
  8. "navigationStyle": "default",
  9. "navigationBarTextStyle": "white",
  10. "navigationBarTitleText": "豆瓣",
  11. "navigationBarBackgroundColor": "#ff0000"
  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": "/images/home.png",
  22. "selectedIconPath": "/images/home_actived.png"
  23. }, {
  24. "pagePath": "pages/list/list",
  25. "text": "列表",
  26. "iconPath": "/images/film.png",
  27. "selectedIconPath": "/images/film_actived.png"
  28. }, {
  29. "pagePath": "pages/my/my",
  30. "text": "我的",
  31. "iconPath": "/images/me.png",
  32. "selectedIconPath": "/images/me_actived.png"
  33. }]
  34. },
  35. "usingComponents": {},
  36. "componentFramework": "glass-easel",
  37. "sitemapLocation": "sitemap.json",
  38. "lazyCodeLoading": "requiredComponents"
  39. }