app.json 620 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/code/code",
  5. "pages/mine/mine"
  6. ],
  7. "subPackages": [],
  8. "window": {
  9. "navigationBarTextStyle": "black",
  10. "navigationBarTitleText": "uni-app",
  11. "navigationBarBackgroundColor": "#F8F8F8",
  12. "backgroundColor": "#F8F8F8"
  13. },
  14. "tabBar": {
  15. "color": "#AAAAAA",
  16. "selectedColor": "#343434",
  17. "borderStyle": "black",
  18. "backgroundColor": "#ffffff",
  19. "list": [
  20. {
  21. "pagePath": "pages/index/index"
  22. },
  23. {
  24. "pagePath": "pages/mine/mine"
  25. }
  26. ]
  27. },
  28. "usingComponents": {},
  29. "sitemapLocation": "sitemap.json"
  30. }