From 27f72d8049586d39e8e1423c3c7ab1bc9eeb3208 Mon Sep 17 00:00:00 2001 From: liuyunqin Date: Fri, 5 Jun 2026 09:22:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E5=81=A5=E5=BA=B7?= =?UTF-8?q?=E6=8E=92=E6=9F=A5=E6=B4=BB=E5=8A=A8=E5=88=97=E8=A1=A8=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2+=E4=B8=BB=E9=A1=B5=E5=85=A5=E5=8F=A3=E5=8D=A1?= =?UTF-8?q?=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 员工端健康监测主页新增健康排查入口(已参加/待参加次数统计) - 活动列表页支持待参加/已参加Tab切换 - 活动卡片展示:活动名称/日期/组织单位/状态/参加人数进度条 - 已参加显示参加时间,待参加显示去填写按钮 Co-Authored-By: Claude Opus 4.8 --- employee-app/health-monitor/doc/CHANGELOG.md | 17 ++ .../health-monitor/health-checkup/index.html | 284 ++++++++++++++++++ employee-app/health-monitor/index.html | 13 + index.html | 7 + 4 files changed, 321 insertions(+) create mode 100644 employee-app/health-monitor/health-checkup/index.html 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原型 + + + + + + + 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:
+ + +
📋
+ +
+
+
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:'体重详细报告' },