app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/risk/risk",
  5. "pages/mine/mine",
  6. "pages/login/login"
  7. ],
  8. "subPackages": [],
  9. "window": {
  10. "navigationBarTextStyle": "black",
  11. "navigationBarTitleText": "uni-app",
  12. "navigationBarBackgroundColor": "#F8F8F8",
  13. "backgroundColor": "#F8F8F8"
  14. },
  15. "tabBar": {
  16. "color": "#999999",
  17. "selectedColor": "#3384ff",
  18. "borderStyle": "white",
  19. "backgroundColor": "#ffffff",
  20. "height": "50px",
  21. "fontSize": "10px",
  22. "iconWidth": "24px",
  23. "spacing": "3px",
  24. "list": [
  25. {
  26. "pagePath": "pages/index/index",
  27. "iconPath": "static/tabBar/Home.png",
  28. "selectedIconPath": "static/tabBar/HomeEd.png",
  29. "text": "任务"
  30. },
  31. {
  32. "pagePath": "pages/risk/risk",
  33. "iconPath": "static/tabBar/risk.png",
  34. "selectedIconPath": "static/tabBar/riskEd.png",
  35. "text": "风险"
  36. },
  37. {
  38. "pagePath": "pages/mine/mine",
  39. "iconPath": "static/tabBar/mine.png",
  40. "selectedIconPath": "static/tabBar/mineEd.png",
  41. "text": "我的"
  42. }
  43. ]
  44. },
  45. "usingComponents": {}
  46. }