app.json 702 B

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