app.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/login",
  5. "pages/register/register",
  6. "pages/detail/detail",
  7. "pages/read/read",
  8. "pages/audio/audio",
  9. "pages/profile/profile",
  10. "pages/bookshelf/bookshelf",
  11. "pages/history/history",
  12. "pages/chat/chat",
  13. "pages/settings/settings"
  14. ],
  15. "window": {
  16. "navigationBarTextStyle": "black",
  17. "navigationBarTitleText": "听书阅读",
  18. "navigationBarBackgroundColor": "#ffffff",
  19. "backgroundColor": "#f5f5f5"
  20. },
  21. "tabBar": {
  22. "color": "#7A7E83",
  23. "selectedColor": "#667eea",
  24. "borderStyle": "black",
  25. "backgroundColor": "#ffffff",
  26. "list": [
  27. {
  28. "pagePath": "pages/index/index",
  29. "iconPath": "images/home.png",
  30. "selectedIconPath": "images/home-active.png",
  31. "text": "首页"
  32. },
  33. {
  34. "pagePath": "pages/bookshelf/bookshelf",
  35. "iconPath": "images/bookshelf.png",
  36. "selectedIconPath": "images/bookshelf-active.png",
  37. "text": "书架"
  38. },
  39. {
  40. "pagePath": "pages/profile/profile",
  41. "iconPath": "images/profile.png",
  42. "selectedIconPath": "images/profile-active.png",
  43. "text": "我的"
  44. }
  45. ]
  46. },
  47. "style": "v2",
  48. "componentFramework": "glass-easel",
  49. "sitemapLocation": "sitemap.json",
  50. "lazyCodeLoading": "requiredComponents"
  51. }