app.json 960 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/index"
  5. ],
  6. "subPackages": [
  7. {
  8. "root": "pagesOne",
  9. "pages": [
  10. "winner/index",
  11. "winner/uploadImage"
  12. ]
  13. }
  14. ],
  15. "window": {
  16. "navigationBarTextStyle": "black",
  17. "navigationBarTitleText": "uni-app",
  18. "navigationBarBackgroundColor": "#F8F8F8",
  19. "backgroundColor": "#F8F8F8"
  20. },
  21. "tabBar": {
  22. "color": "#A5AEC1",
  23. "selectedColor": "#1D212A",
  24. "backgroundColor": "#fff",
  25. "borderStyle": "white",
  26. "list": [
  27. {
  28. "text": "首页",
  29. "pagePath": "pages/index/index",
  30. "iconPath": "static/images/home_default.png",
  31. "selectedIconPath": "static/images/home_selected.png"
  32. },
  33. {
  34. "text": "我的",
  35. "pagePath": "pages/my/index",
  36. "iconPath": "static/images/user_default.png",
  37. "selectedIconPath": "static/images/user_selected.png"
  38. }
  39. ]
  40. },
  41. "usingComponents": {}
  42. }