app.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/classification/classification",
  5. "pages/collection/collection",
  6. "pages/user/user"
  7. ],
  8. "window": {
  9. "navigationBarTitleText": "喜马拉雅",
  10. "backgroundTextStyle": "light",
  11. "navigationBarBackgroundColor": "#fff",
  12. "navigationBarTextStyle": "black"
  13. },
  14. "tabBar": {
  15. "color":"#cdcdcd",
  16. "selectedColor": "#ff520f",
  17. "list": [{
  18. "pagePath": "pages/index/index",
  19. "text": "首页",
  20. "iconPath": "image/icon/home-icon.png",
  21. "selectedIconPath": "image/icon/home-selectIcon.png"
  22. },
  23. {
  24. "pagePath": "pages/classification/classification",
  25. "text": "分类",
  26. "iconPath": "image/icon/fen-icon.png",
  27. "selectedIconPath": "image/icon/fen-selectIcon.png"
  28. },
  29. {
  30. "pagePath": "pages/collection/collection",
  31. "text": "收藏",
  32. "iconPath": "image/icon/collection-icon.png",
  33. "selectedIconPath": "image/icon/collection-selectIcon.png"
  34. },
  35. {
  36. "pagePath": "pages/user/user",
  37. "text": "我的",
  38. "iconPath": "image/icon/user-icon.png",
  39. "selectedIconPath": "image/icon/user-selectIcon.png"
  40. }]
  41. },
  42. "debug":true,
  43. "sitemapLocation": "sitemap.json"
  44. }