feat: 添加操作日志、危险操作确认和业务关联功能

1. 新增操作日志记录功能,记录关键操作
2. 实现危险操作确认对话框,防止误删
3. 添加业务和库房管理模块
4. 支持设备标记为空闲状态
5. 完善API文档和健康检查
6. 优化前端删除操作的确认流程
7. 添加Swagger API文档支持
8. 实现设备与业务的关联功能
9. 改进设备模型,添加空闲相关字段
10. 优化用户、角色管理操作日志
This commit is contained in:
zhang1106
2026-03-20 17:15:14 +08:00
parent c392df9ce3
commit 73cbe4ac1b
52 changed files with 11149 additions and 1756 deletions
+7 -1
View File
@@ -11,7 +11,11 @@
"lint": "eslint . --ext js --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext js --fix",
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier --check \"**/*.js\""
"format:check": "prettier --check \"**/*.js\"",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:operation-logs": "jest tests/operationLog.model.test.js tests/operationLogger.test.js tests/operationLogs.api.test.js --runInBand"
},
"dependencies": {
"axios": "^1.13.6",
@@ -34,6 +38,8 @@
"smb2": "^0.2.2",
"sqlite3": "^5.1.7",
"ssh2-sftp-client": "^9.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"three": "^0.182.0",
"webdav": "^5.3.1",
"winston": "^3.19.0",