app.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "record/winnerList",
  13. "record/uploadList",
  14. "record/uploadDetail"
  15. ]
  16. }
  17. ],
  18. "window": {
  19. "navigationBarTextStyle": "black",
  20. "navigationBarTitleText": "uni-app",
  21. "navigationBarBackgroundColor": "#F8F8F8",
  22. "backgroundColor": "#F8F8F8"
  23. },
  24. "tabBar": {
  25. "color": "#A5AEC1",
  26. "selectedColor": "#1D212A",
  27. "backgroundColor": "#fff",
  28. "borderStyle": "white",
  29. "list": [
  30. {
  31. "text": "首页",
  32. "pagePath": "pages/index/index",
  33. "iconPath": "static/images/home_default.png",
  34. "selectedIconPath": "static/images/home_selected.png"
  35. },
  36. {
  37. "text": "我的",
  38. "pagePath": "pages/my/index",
  39. "iconPath": "static/images/user_default.png",
  40. "selectedIconPath": "static/images/user_selected.png"
  41. }
  42. ]
  43. },
  44. "usingComponents": {}
  45. }