app.json 862 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/camera/camera",
  5. "pages/my/my"
  6. ],
  7. "window": {
  8. "backgroundTextStyle": "light",
  9. "navigationBarTitleText": "迷你电影",
  10. "navigationBarTextStyle": "white",
  11. "navigationBarBackgroundColor": "#5ea875"
  12. },
  13. "tabBar": {
  14. "list": [{
  15. "pagePath": "pages/index/index",
  16. "text": "主页",
  17. "iconPath": "images/home_icon.png",
  18. "selectedIconPath": "images/home_active_icon.png"
  19. }, {
  20. "pagePath": "pages/camera/camera",
  21. "text": "影院",
  22. "iconPath": "images/dianying.png",
  23. "selectedIconPath": "images/dianying_active.png"
  24. }, {
  25. "pagePath": "pages/my/my",
  26. "text": "我的",
  27. "iconPath": "images/my_icon.png",
  28. "selectedIconPath": "images/my_active_icon.png"
  29. }]
  30. },
  31. "style": "v2",
  32. "sitemapLocation": "sitemap.json"
  33. }