app.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "pages": [
  3. "pages/home/index",
  4. "pages/index/index",
  5. "pages/interList/interList",
  6. "pages/detail/detail",
  7. "pages/ruins/index",
  8. "pages/marvellous/index"
  9. ],
  10. "window": {
  11. "backgroundColor": "#F6F6F6",
  12. "backgroundTextStyle": "light",
  13. "navigationBarBackgroundColor": "#F6F6F6",
  14. "navigationBarTitleText": "寻找红色的记忆",
  15. "navigationBarTextStyle": "black"
  16. },
  17. "tabBar": {
  18. "color": "#333",
  19. "selectedColor": "#07C160",
  20. "backgroundColor": "#fff",
  21. "list": [
  22. {
  23. "pagePath": "pages/home/index",
  24. "text": "首页",
  25. "iconPath": "/images/tabbar_icon_home_default.png",
  26. "selectedIconPath": "/images/tabbar_icon_home_active.png"
  27. },
  28. {
  29. "pagePath": "pages/index/index",
  30. "text": "我的",
  31. "iconPath": "/images/tabbar_icon_setting_default.png",
  32. "selectedIconPath": "/images/tabbar_icon_setting_active.png"
  33. }
  34. ]
  35. },
  36. "sitemapLocation": "sitemap.json",
  37. "style": "v2",
  38. "useExtendedLib": {
  39. "weui": true
  40. }
  41. }