app.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/home/home",
  5. "pages/group/group",
  6. "pages/stat/stat",
  7. "pages/my/my",
  8. "pages/ruleSet/ruleSet",
  9. "pages/punchTime/punchTime",
  10. "pages/setPunchTime/setPunchTime",
  11. "pages/rulesDetail/rulesDetail",
  12. "pages/particulars/particulars",
  13. "pages/punchLocation/punchLocation",
  14. "pages/addLocation/addLocation",
  15. "pages/statDetail/statDetail",
  16. "pages/authentication/authentication",
  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. "plugins": {
  58. "myPlugin": {
  59. "provider": "wx1549b963bbae9931",
  60. "version": "4.0.0"
  61. }
  62. },
  63. "permission": {
  64. "scope.userLocation": {
  65. "desc": "您的位置信息将用于记录打卡"
  66. }
  67. },
  68. "usingComponents": {
  69. "drop-down": "/uni_modules/zwx-dropDown/components/zwx-dropDown/zwx-dropDown"
  70. }
  71. }