app.json 966 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/index",
  5. "pages/editUser/index",
  6. "pages/notice/index",
  7. "pages/collection/index",
  8. "pages/follow/index",
  9. "pages/userWorks/index",
  10. "pages/logs/logs"
  11. ],
  12. "tabBar": {
  13. "custom": true,
  14. "list": [{
  15. "pagePath": "pages/my/index",
  16. "text": "我的"
  17. }, {
  18. "pagePath": "pages/index/index",
  19. "text": "推荐"
  20. }, {
  21. "pagePath": "pages/logs/logs",
  22. "text": "作品"
  23. }]
  24. },
  25. "window": {
  26. "backgroundTextStyle": "light",
  27. "navigationBarBackgroundColor": "#F2F6FC",
  28. "navigationBarTitleText": "小学语文朗读配音",
  29. "navigationBarTextStyle": "black",
  30. "onReachBottomDistance": 50,
  31. "enablePullDownRefresh": true
  32. },
  33. "resolveAlias": {
  34. "~/*": "/*"
  35. },
  36. "sitemapLocation": "sitemap.json"
  37. }