app.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "pages": [
  3. "pages/stat/stat",
  4. "pages/home/home",
  5. "pages/my/my",
  6. "pages/ruleSet/ruleSet",
  7. "pages/punchTime/punchTime",
  8. "pages/setPunchTime/setPunchTime",
  9. "pages/rulesDetail/rulesDetail",
  10. "pages/particulars/particulars",
  11. "pages/punchLocation/punchLocation",
  12. "pages/addLocation/addLocation",
  13. "pages/group/group",
  14. "pages/statDetail/statDetail",
  15. "pages/authentication/authentication",
  16. "pages/index/index",
  17. "pages/powerSet/powerSet",
  18. "pages/cardRecord/cardRecord",
  19. "pages/addRules/addRules",
  20. "pages/ruleName/ruleName",
  21. "pages/editRules/editRules",
  22. "pages/location/location"
  23. ],
  24. "subPackages": [],
  25. "window": {
  26. "navigationBarTextStyle": "black",
  27. "navigationBarTitleText": "uni-app",
  28. "navigationBarBackgroundColor": "#F8F8F8",
  29. "backgroundColor": "#F8F8F8"
  30. },
  31. "tabBar": {
  32. "color": "#000",
  33. "selectedColor": "#0082FC",
  34. "backgroundColor": "#ffffff",
  35. "list": [
  36. {
  37. "pagePath": "pages/home/home",
  38. "iconPath": "static/home.png",
  39. "selectedIconPath": "static/home_active.png",
  40. "text": "首页"
  41. },
  42. {
  43. "pagePath": "pages/stat/stat",
  44. "iconPath": "static/stat.png",
  45. "selectedIconPath": "static/stat_active.png",
  46. "text": "统计"
  47. },
  48. {
  49. "pagePath": "pages/my/my",
  50. "iconPath": "static/my.png",
  51. "selectedIconPath": "static/my_active.png",
  52. "text": "我的"
  53. }
  54. ]
  55. },
  56. "lazyCodeLoading": "requiredComponents",
  57. "permission": {},
  58. "usingComponents": {
  59. "drop-down": "/uni_modules/zwx-dropDown/components/zwx-dropDown/zwx-dropDown"
  60. }
  61. }