app.json 989 B

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