app.json 1.0 KB

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