app.json 942 B

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