app.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "pages": [
  3. "pages/login/index",
  4. "pages/index/index",
  5. "pages/mine/index"
  6. ],
  7. "subPackages": [
  8. {
  9. "root": "subPackages",
  10. "pages": [
  11. "equipment/condition",
  12. "equipment/run",
  13. "equipment/single",
  14. "equipment/detail",
  15. "fault/index",
  16. "shutdown/index",
  17. "repair/index",
  18. "repair/add",
  19. "repair/detail",
  20. "repair/service",
  21. "repair/finish",
  22. "mould/index",
  23. "mould/edit"
  24. ]
  25. }
  26. ],
  27. "window": {
  28. "navigationBarTextStyle": "black",
  29. "navigationBarTitleText": "uni-app",
  30. "navigationBarBackgroundColor": "#F8F8F8",
  31. "backgroundColor": "#F8F8F8"
  32. },
  33. "tabBar": {
  34. "color": "#7A7E83",
  35. "selectedColor": "#43adfd",
  36. "borderStyle": "black",
  37. "backgroundColor": "#ffffff",
  38. "list": [
  39. {
  40. "pagePath": "pages/index/index",
  41. "iconPath": "static/ic_tab_home.png",
  42. "selectedIconPath": "static/ic_tab_home_selected.png",
  43. "text": "首页"
  44. },
  45. {
  46. "pagePath": "pages/mine/index",
  47. "iconPath": "static/ic_tab_mine.png",
  48. "selectedIconPath": "static/ic_tab_mine_selected.png",
  49. "text": "我的"
  50. }
  51. ]
  52. },
  53. "lazyCodeLoading": "requiredComponents",
  54. "usingComponents": {
  55. "empty": "/components/empty"
  56. }
  57. }