app.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "pages/thirdPartyContent/thirdPartyContent",
  15. "pages/thirdPartyContentEdit/thirdPartyContentEdit"
  16. ],
  17. "window": {
  18. "navigationBarTextStyle": "black",
  19. "navigationBarTitleText": "听书阅读",
  20. "navigationBarBackgroundColor": "#ffffff",
  21. "backgroundColor": "#f5f5f5"
  22. },
  23. "tabBar": {
  24. "color": "#7A7E83",
  25. "selectedColor": "#667eea",
  26. "borderStyle": "black",
  27. "backgroundColor": "#ffffff",
  28. "list": [
  29. {
  30. "pagePath": "pages/index/index",
  31. "iconPath": "images/home.png",
  32. "selectedIconPath": "images/home-active.png",
  33. "text": "首页"
  34. },
  35. {
  36. "pagePath": "pages/bookshelf/bookshelf",
  37. "iconPath": "images/bookshelf.png",
  38. "selectedIconPath": "images/bookshelf-active.png",
  39. "text": "书架"
  40. },
  41. {
  42. "pagePath": "pages/profile/profile",
  43. "iconPath": "images/profile.png",
  44. "selectedIconPath": "images/profile-active.png",
  45. "text": "我的"
  46. }
  47. ]
  48. },
  49. "style": "v2",
  50. "componentFramework": "glass-easel",
  51. "sitemapLocation": "sitemap.json",
  52. "lazyCodeLoading": "requiredComponents"
  53. }