feat: 审批流程模块 (T审批A审批)

- 新增 backend/app/api/approval.py 审批API
- 前端H5支持发起审批、审批操作
- 添加审批卡片弹窗组件
- 路由注册审批模块
This commit is contained in:
Simon
2026-06-15 09:32:41 +08:00
parent 64d6812ec3
commit 93ba41ed79
29 changed files with 6584 additions and 0 deletions
+68
View File
@@ -0,0 +1,68 @@
# =============================================================================
# 根目录 .dockerignore
# 用途: 优化 docker build 体积 + 速度 + 安全
# =============================================================================
# Git
.git/
.gitignore
.gitattributes
.git-blame-ignore-revs
# 文档(只 README 入)
docs/
*.md
!backend/README.md
README.md
# 测试
tests/
**/test_*.py
**/*_test.py
**/*.test.ts
**/*.spec.ts
coverage/
.coverage
htmlcov/
.pytest_cache/
# 开发工具
.vscode/
.idea/
*.swp
.DS_Store
Thumbs.db
# 构建产物
frontend-*/dist/
frontend-*/node_modules/
# 部署包 / 备份
deploy-*.tar
deploy-*.tar.gz
*.log
*.log.err
build_logs/
# Python
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
*.egg-info/
# 环境变量(敏感)
.env
.env.*
!.env.example
# Docker(自身)
Dockerfile
.dockerignore
docker-compose*.yml
deploy-nas/
deploy-server/
# workbuddy(不需入镜像)
.workbuddy/