app.json 1.2 KB

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