Files
klp-oa/klp-ui
Joshi d03cd926bc feat(attendance): 新增考勤记录表导出功能
- 在前端API中添加exportAttendanceReport方法用于导出考勤记录
- 在AttendanceRecordsController中添加exportReport接口支持考勤表导出
- 在AttendanceRecordsServiceImpl中实现完整的考勤记录表Excel导出逻辑
- 添加员工分组、按日期汇总打卡时间的业务处理
- 创建多种Excel样式包括标题、表头、日期列和明细行样式
- 在前端页面中新增导出按钮和导出参数设置对话框
- 实现导出前确认同步状态的交互逻辑
- 支持按工号、姓名、部门筛选条件进行考勤表导出
2026-07-03 15:58:43 +08:00
..
2025-07-17 18:07:48 +08:00
2025-07-17 18:07:48 +08:00
2025-07-17 18:07:48 +08:00
2025-09-24 17:23:06 +08:00
2025-09-24 17:23:06 +08:00
2025-09-24 17:23:06 +08:00
2025-07-17 18:07:48 +08:00
2025-07-17 18:07:48 +08:00
2025-07-17 18:07:48 +08:00

开发

# 克隆项目
git clone https://gitee.com/KonBAI-Q/klp-flowable-plus.git

# 进入项目目录
cd klp-ui

# 安装依赖
npm install

# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npmmirror.com

# 启动服务
npm run dev

浏览器访问 http://localhost:80

发布

# 构建测试环境
npm run build:stage

# 构建生产环境
npm run build:prod