app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. "pages/risk/review/review",
  11. "pages/risk/review/form/form",
  12. "pages/risk/check/check",
  13. "pages/risk/check/form/form",
  14. "pages/risk/rectify/rectify",
  15. "pages/risk/rectify/form/form",
  16. "pages/risk/repeal/repeal",
  17. "pages/task/taskList/taskList",
  18. "pages/task/submit/submit"
  19. ],
  20. "subPackages": [],
  21. "window": {
  22. "navigationBarTextStyle": "black",
  23. "navigationBarTitleText": "uni-app",
  24. "navigationBarBackgroundColor": "#F3F5FB",
  25. "backgroundColor": "#F8F8F8"
  26. },
  27. "tabBar": {
  28. "color": "#999999",
  29. "selectedColor": "#3384ff",
  30. "borderStyle": "white",
  31. "backgroundColor": "#ffffff",
  32. "height": "50px",
  33. "fontSize": "10px",
  34. "iconWidth": "24px",
  35. "spacing": "3px",
  36. "list": [
  37. {
  38. "pagePath": "pages/index/index",
  39. "iconPath": "static/tabBar/Home.png",
  40. "selectedIconPath": "static/tabBar/HomeEd.png",
  41. "text": "任务"
  42. },
  43. {
  44. "pagePath": "pages/risk/risk",
  45. "iconPath": "static/tabBar/risk.png",
  46. "selectedIconPath": "static/tabBar/riskEd.png",
  47. "text": "隐患"
  48. },
  49. {
  50. "pagePath": "pages/mine/mine",
  51. "iconPath": "static/tabBar/mine.png",
  52. "selectedIconPath": "static/tabBar/mineEd.png",
  53. "text": "我的"
  54. }
  55. ]
  56. },
  57. "usingComponents": {}
  58. }