app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/movie/movie",
  5. "pages/my/my",
  6. "pages/index/index",
  7. "pages/logs/logs",
  8. "pages/detail/detail"
  9. ],
  10. "window": {
  11. "navigationBarTextStyle": "black",
  12. "navigationBarTitleText": "Weixin",
  13. "navigationBarBackgroundColor": "#ffffff"
  14. },
  15. "tabBar": {
  16. "custom": false,
  17. "color": "#000000",
  18. "selectedColor": "#ff0000",
  19. "backgroundColor": "#ffffff",
  20. "list": [
  21. {
  22. "pagePath": "pages/home/home",
  23. "text": "首页",
  24. "iconPath": "/images/home.png",
  25. "selectedIconPath": "/images/home_actived.png"
  26. },
  27. {
  28. "pagePath": "pages/movie/movie",
  29. "text": "电影",
  30. "iconPath": "/images/film.png",
  31. "selectedIconPath": "/images/film_actived.png"
  32. },
  33. {
  34. "pagePath": "pages/my/my",
  35. "text": "我的",
  36. "iconPath": "/images/me.png",
  37. "selectedIconPath": "/images/me_actived.png"
  38. }
  39. ]
  40. },
  41. "componentFramework": "glass-easel",
  42. "sitemapLocation": "sitemap.json",
  43. "lazyCodeLoading": "requiredComponents"
  44. }