app.json 910 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/auth/login",
  4. "pages/homepage/index",
  5. "pages/auth/register",
  6. "pages/auth/forgot",
  7. "pages/personalInfo/index"
  8. ],
  9. "window": {
  10. "navigationBarTextStyle": "black",
  11. "navigationBarTitleText": "uni-app",
  12. "navigationBarBackgroundColor": "#F8F8F8",
  13. "backgroundColor": "#F8F8F8"
  14. },
  15. "tabBar": {
  16. "color": "#999",
  17. "selectedColor": "#007AFF",
  18. "borderStyle": "black",
  19. "backgroundColor": "#ffffff",
  20. "list": [
  21. {
  22. "pagePath": "pages/homepage/index",
  23. "text": "首页",
  24. "iconPath": "static/tabbar/home.png",
  25. "selectedIconPath": "static/tabbar/home-active.png"
  26. },
  27. {
  28. "pagePath": "pages/personalInfo/index",
  29. "text": "我的",
  30. "iconPath": "static/tabbar/personal.png",
  31. "selectedIconPath": "static/tabbar/personal-active.png"
  32. }
  33. ]
  34. },
  35. "usingComponents": {}
  36. }