app.json 684 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/taBar/one/one",
  5. "pages/taBar/three/three"
  6. ],
  7. "subPackages": [],
  8. "window": {
  9. "navigationBarTextStyle": "black",
  10. "navigationBarTitleText": "uni-app",
  11. "navigationBarBackgroundColor": "#F8F8F8",
  12. "backgroundColor": "#F8F8F8"
  13. },
  14. "tabBar": {
  15. "color": "#C0C4CC",
  16. "list": [
  17. {
  18. "pagePath": "pages/index/index",
  19. "text": "uni-app"
  20. },
  21. {
  22. "pagePath": "pages/taBar/one/one",
  23. "text": "二页"
  24. },
  25. {
  26. "pagePath": "pages/taBar/three/three",
  27. "text": "三页"
  28. }
  29. ]
  30. },
  31. "usingComponents": {},
  32. "sitemapLocation": "sitemap.json"
  33. }