app.json 673 B

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