项目结构
12114
└─ 31-lms-public_hygiene├─ .autod.conf.js├─ README.md├─ app│ ├─ common│ │ └─ README.md│ ├─ constant│ │ └─ README.md│ ├─ controller│ │ └─ README.md│ ├─ public│ │ ├─ README.md│ │ └─ plugin│ │ ├─ compression│ │ │ └─ browser-image-compression.js│ │ ├─ jsoneditor│ │ │ ├─ img│ │ │ │ └─ jsoneditor-icons.svg│ │ │ ├─ jsoneditor.css│ │ │ └─ jsoneditor.js│ │ └─ vant│ │ ├─ index.css│ │ └─ vant.min.js│ ├─ service│ │ └─ README.md│ └─ view│ ├─ component│ │ ├─ deductionRecordOfArea.html│ │ ├─ jhFileInput.html│ │ └─ tableRecordHistory.html│ ├─ init-json│ │ ├─ component│ │ │ └─ deductionRecordOfArea.js│ │ └─ page│ │ ├─ areaList.js│ │ ├─ areaManagement.js│ │ ├─ areaMonth.js│ │ ├─ areaView.js│ │ └─ classMonth.js│ ├─ page│ │ ├─ areaList.html│ │ ├─ areaManagement.html│ │ ├─ areaMonth.html│ │ ├─ areaView.html│ │ └─ classMonth.html│ └─ pageDoc│ ├─ 1.studentManagement.md│ ├─ _sidebar.md│ ├─ areaList.md│ ├─ areaManagement.md│ ├─ areaMonth.md│ ├─ classMonth.md│ ├─ deductionRecord.md│ └─ upload│ └─ protocol.jpeg├─ app.js├─ config│ ├─ config.default.js│ ├─ config.local.example.js│ ├─ config.local.js│ ├─ config.prod.example.js│ └─ plugin.js├─ jianghu-init.dev.lock├─ jsconfig.json├─ logs│ ├─ common-error.json.log│ ├─ common-error.json.log.2024-03-15│ ├─ common-error.log│ ├─ common-error.log.2024-03-15│ ├─ egg-agent.json.log│ ├─ egg-agent.log│ ├─ egg-agent.log.2024-03-15│ ├─ egg-knex.json.log│ ├─ egg-knex.json.log.2024-03-15│ ├─ egg-knex.log│ ├─ egg-knex.log.2024-03-15│ ├─ egg-schedule.json.log│ ├─ egg-schedule.json.log.2024-03-15│ ├─ egg-schedule.log│ ├─ egg-schedule.log.2024-03-15│ ├─ egg-web.json.log│ ├─ egg-web.json.log.2024-03-15│ ├─ egg-web.log│ ├─ egg-web.log.2024-03-15│ ├─ public_clean-web.json.log│ ├─ public_clean-web.json.log.2024-03-15│ ├─ public_clean-web.log│ ├─ public_clean-web.log.2024-03-15│ ├─ public_clean.html.json.log│ ├─ public_clean.html.log│ ├─ public_clean.page.json.log│ ├─ public_clean.page.log│ ├─ public_clean.resource.json.log│ ├─ public_clean.resource.json.log.2024-03-15│ ├─ public_clean.resource.log│ └─ public_clean.resource.log.2024-03-15├─ package-lock.json├─ package.json├─ run│ ├─ agent_config.json│ ├─ agent_config_meta.json│ ├─ agent_timing_39646.json│ ├─ application_config.json│ ├─ application_config_meta.json│ ├─ application_timing_39690.json│ ├─ application_timing_46129.json│ └─ router.json├─ sql│ └─ init.sql├─ typings│ ├─ app│ │ └─ index.d.ts│ └─ config│ ├─ index.d.ts│ └─ plugin.d.ts└─ upload