diff --git a/employee-app/health-monitor/doc/CHANGELOG.md b/employee-app/health-monitor/doc/CHANGELOG.md index 44ea667..81963e4 100644 --- a/employee-app/health-monitor/doc/CHANGELOG.md +++ b/employee-app/health-monitor/doc/CHANGELOG.md @@ -4,6 +4,23 @@ --- +## [2026-06-05] feat: 新增健康排查活动列表页面+主页入口卡片 + +**涉及文件(3个新增、1个修改):** +- `index.html` — 主页底部新增"健康排查"入口卡片,显示已参加/待参加活动次数 +- `health-checkup/index.html` — 健康排查活动列表页(新增) +- 根目录 `index.html` — SITE_MAP 新增健康排查活动列表页条目 + +**变更说明:** +- 员工端健康监测主页最底部新增"健康排查"模块入口(紫色渐变图标) +- 显示"已参加活动 X 次"和"待参加活动 X 次",待参加次数标红 +- 点击跳转至健康排查活动列表页 +- 活动列表页包含"待参加"和"已参加"两个 Tab 切换 +- 活动卡片展示:活动名称、起止日期、组织单位、活动状态、应参加人数、已参加人数(含进度条) +- 已参加卡片显示参加时间,待参加卡片显示"去填写"按钮 + +--- + ## [2026-06-04] feat: 设备详情页变化趋势改造+新增空气质量指数 **涉及文件(1个修改):** diff --git a/employee-app/health-monitor/health-checkup/index.html b/employee-app/health-monitor/health-checkup/index.html new file mode 100644 index 0000000..48aa96e --- /dev/null +++ b/employee-app/health-monitor/health-checkup/index.html @@ -0,0 +1,284 @@ + + + + + +健康排查活动 - 员工端 | 健康CQ原型 + + + +
+
+ 9:41 + + + + + +
+ + + +
+
+
待参加
+
已参加
+
+
+ +
+ +
+
+
+ + + diff --git a/employee-app/health-monitor/index.html b/employee-app/health-monitor/index.html index 8fedb6c..3654a39 100644 --- a/employee-app/health-monitor/index.html +++ b/employee-app/health-monitor/index.html @@ -183,6 +183,19 @@ body { background: #f0f2f5; display: flex; justify-content: center; align-items:
+ + +
📋
+
+
健康排查
+
+ 已参加活动 3 + 待参加活动 2 +
+
+
+
+
diff --git a/index.html b/index.html index 23f94b2..be7d9da 100644 --- a/index.html +++ b/index.html @@ -339,6 +339,12 @@ const SITE_MAP = [ { file:'health-checkup/survey-score.html', label:'排查问卷-积分规则' }, { file:'health-checkup/survey-template.html', label:'排查问卷-模板信息' }, { file:'health-checkup/survey-question.html', label:'排查问卷-问题管理' }, + { file:'health-checkup/survey-manage.html', label:'问卷管理' }, + { file:'health-checkup/survey-edit.html', label:'新增/编辑问卷', dialog:true }, + { file:'health-checkup/activity-manage.html', label:'活动管理' }, + { file:'health-checkup/activity-stat.html', label:'活动统计' }, + { file:'health-checkup/activity-edit.html', label:'新增/编辑活动', dialog:true }, + { file:'health-checkup/activity-detail.html', label:'活动详情', dialog:true }, { file:'health-checkup/maxim.html', label:'格言管理' }, { file:'health-checkup/record-user.html', label:'排查记录-用户排查' }, { file:'health-checkup/record-dept.html', label:'排查记录-部门排查' }, @@ -576,6 +582,7 @@ const SITE_MAP = [ { file:'health-screening/questionnaire-setting.html', label:'题目设置' }, { file:'health-screening/checkin-record.html', label:'打卡记录' }, { file:'health-screening/questionnaire-detail.html', label:'问卷详情' }, + { file:'health-checkup/index.html', label:'健康排查活动列表' }, { file:'weight/index.html', label:'体重监测首页' }, { file:'weight/history.html', label:'体重历史数据' }, { file:'weight/report-detail.html', label:'体重详细报告' },