diff --git a/index.html b/index.html index e3ad986..91f35c8 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,7 @@ body { background: var(--background); font-family: -apple-system, BlinkMacSystem /* ===== Tab 导航(嵌入 Header 底部) ===== */ .tab-nav { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 20px 48px 0; position: relative; z-index: 1; } -.tab-nav__item { padding: 10px 28px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.7); cursor: pointer; border-radius: 28px; transition: all .25s ease; user-select: none; display: flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); backdrop-filter: blur(6px); } + .tab-nav__item { padding: 10px 28px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.7); cursor: pointer; border-radius: 28px; transition: all .25s ease; user-select: none; display: flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); } .tab-nav__item:hover { color: #fff; background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); } .tab-nav__item--active { color: var(--primary-dark); background: #fff; border-color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.15); } .tab-nav__item--active .tab-nav__badge { background: var(--primary); color: #fff; } @@ -77,8 +77,16 @@ body { background: var(--background); font-family: -apple-system, BlinkMacSystem /* ===== 呼吸灯动画 ===== */ @keyframes breathe { - 0%, 100% { border-color: rgba(82,196,26,0.35); box-shadow: 0 0 0 0 rgba(82,196,26,0); } - 50% { border-color: rgba(82,196,26,0.7); box-shadow: 0 0 12px 2px rgba(82,196,26,0.18); } + 0%, 100% { border-color: rgba(82,196,26,0.35); } + 50% { border-color: rgba(82,196,26,0.85); } +} + +/* 尊重系统「减少动态效果」设置,关闭所有动画/过渡,进一步降低低配机器的负担 */ +@media (prefers-reduced-motion: reduce) { + .tab-content, .page-popover { animation: none; } + .module-card--ready { animation: none; } + .module-card, .tab-nav__item, .module-card__page-count, .page-popover__item, + .module-card__prd, .prd-global-card, .prd-item { transition: none; } } /* ===== 模块卡片 ===== */ @@ -213,6 +221,7 @@ const SITE_MAP = [ { file:'mid-doctor-realtime.html', label:'医生实时检查情况' }, { file:'mid-doctor-count.html', label:'医生检查人数统计' }, { file:'mid-hospital-appointment.html', label:'医院预约情况统计' }, + { file:'mid-gastro-questionnaire.html', label:'胃肠镜问卷信息' }, { file:'post-unit-count.html', label:'单位体检人数统计' }, { file:'post-hospital-count.html', label:'医院体检人数统计' }, { file:'post-doctor-count.html', label:'医生检查人数统计' }, diff --git a/web-admin/health-checkup/archive-personal.html b/web-admin/health-checkup/archive-personal.html index b99cab2..c504327 100644 --- a/web-admin/health-checkup/archive-personal.html +++ b/web-admin/health-checkup/archive-personal.html @@ -110,6 +110,7 @@ 个人体检数据 单位报表数据 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/archive-unit.html b/web-admin/health-checkup/archive-unit.html index 404d4a8..5aa85ff 100644 --- a/web-admin/health-checkup/archive-unit.html +++ b/web-admin/health-checkup/archive-unit.html @@ -113,6 +113,7 @@ 个人体检数据 单位报表数据 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-hospital-basic.html b/web-admin/health-checkup/config-hospital-basic.html index 20221cb..51b3d6c 100644 --- a/web-admin/health-checkup/config-hospital-basic.html +++ b/web-admin/health-checkup/config-hospital-basic.html @@ -180,6 +180,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-hospital-combo.html b/web-admin/health-checkup/config-hospital-combo.html index 4a4c850..fe956a6 100644 --- a/web-admin/health-checkup/config-hospital-combo.html +++ b/web-admin/health-checkup/config-hospital-combo.html @@ -171,6 +171,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-material-notice.html b/web-admin/health-checkup/config-material-notice.html index affa7a6..b2baaf0 100644 --- a/web-admin/health-checkup/config-material-notice.html +++ b/web-admin/health-checkup/config-material-notice.html @@ -166,6 +166,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-material-video.html b/web-admin/health-checkup/config-material-video.html index 2c8337d..31e6ac2 100644 --- a/web-admin/health-checkup/config-material-video.html +++ b/web-admin/health-checkup/config-material-video.html @@ -187,6 +187,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-report-template.html b/web-admin/health-checkup/config-report-template.html index ab6814c..faa319e 100644 --- a/web-admin/health-checkup/config-report-template.html +++ b/web-admin/health-checkup/config-report-template.html @@ -200,6 +200,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-standard-basic.html b/web-admin/health-checkup/config-standard-basic.html index 04baa09..2ace8ef 100644 --- a/web-admin/health-checkup/config-standard-basic.html +++ b/web-admin/health-checkup/config-standard-basic.html @@ -215,6 +215,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-standard-category.html b/web-admin/health-checkup/config-standard-category.html index 1392bad..abb1858 100644 --- a/web-admin/health-checkup/config-standard-category.html +++ b/web-admin/health-checkup/config-standard-category.html @@ -219,6 +219,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/config-standard-hospital.html b/web-admin/health-checkup/config-standard-hospital.html index ce9b600..09ae9e3 100644 --- a/web-admin/health-checkup/config-standard-hospital.html +++ b/web-admin/health-checkup/config-standard-hospital.html @@ -154,6 +154,7 @@ 医院体检项目 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/exception-dirty.html b/web-admin/health-checkup/exception-dirty.html index be1489c..044b95b 100644 --- a/web-admin/health-checkup/exception-dirty.html +++ b/web-admin/health-checkup/exception-dirty.html @@ -120,6 +120,7 @@ 系统脏数据 结果异常 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/exception-result.html b/web-admin/health-checkup/exception-result.html index cabc4db..1e2963f 100644 --- a/web-admin/health-checkup/exception-result.html +++ b/web-admin/health-checkup/exception-result.html @@ -122,6 +122,7 @@ 系统脏数据 结果异常 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/mid-appointment-track.html b/web-admin/health-checkup/mid-appointment-track.html index abda758..85a9cdf 100644 --- a/web-admin/health-checkup/mid-appointment-track.html +++ b/web-admin/health-checkup/mid-appointment-track.html @@ -33,15 +33,6 @@ .sidebar-item{display:flex;align-items:center;gap:8px;padding:10px 24px;color:rgba(255,255,255,0.65);font-size:var(--font-sm);cursor:pointer;transition:all .15s;text-decoration:none;} .sidebar-item:hover{color:#fff;background:rgba(255,255,255,0.06);} .sidebar-item.active{color:#fff;background:var(--primary);} - .sidebar-subgroup__header{display:flex;align-items:center;gap:6px;padding:10px 24px;color:rgba(255,255,255,0.65);font-size:var(--font-sm);cursor:pointer;transition:all .15s;user-select:none;} - .sidebar-subgroup__header:hover{color:rgba(255,255,255,0.85);background:rgba(255,255,255,0.04);} - .sidebar-subgroup__header .arrow{width:10px;height:10px;transition:transform .2s;flex-shrink:0;} - .sidebar-subgroup__header .arrow path{stroke:rgba(255,255,255,0.45);} - .sidebar-subgroup.open>.sidebar-subgroup__header{color:rgba(255,255,255,0.85);} - .sidebar-subgroup.open>.sidebar-subgroup__header .arrow{transform:rotate(90deg);} - .sidebar-subgroup__body{display:none;padding-left:16px;} - .sidebar-subgroup.open>.sidebar-subgroup__body{display:block;} - .sidebar-subgroup__body .sidebar-item{padding-left:36px;font-size:12px;} /* 主内容 */ .main{margin-left:240px;margin-top:56px;padding:24px;min-height:calc(100vh - 56px);} /* 筛选栏 */ @@ -54,12 +45,10 @@ .btn{height:36px;padding:0 16px;border-radius:var(--radius-sm);font-size:var(--font-sm);cursor:pointer;border:none;transition:all .2s;display:inline-flex;align-items:center;gap:6px;} .btn-primary{background:var(--primary);color:#fff;}.btn-primary:hover{background:#40a9ff;} .btn-default{background:#fff;color:var(--text-primary);border:1px solid var(--border);}.btn-default:hover{color:var(--primary);border-color:var(--primary);} - .btn-danger{background:#fff;color:var(--danger);border:1px solid var(--danger);}.btn-danger:hover{background:#fff1f0;} /* 表格 */ .table-card{background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);overflow:hidden;} .table-card__header{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-bottom:1px solid var(--border);} .table-card__title{font-size:var(--font-base);font-weight:600;} - .table-card__actions{display:flex;gap:8px;align-items:center;} .table-card__content{overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;} .table-card__content table{min-width:100%;white-space:nowrap;} table{width:100%;border-collapse:collapse;} @@ -72,12 +61,51 @@ .tag-green{background:#F6FFED;color:var(--success);} .tag-orange{background:#FFF7E6;color:var(--warning);} .tag-red{background:#FFF1F0;color:var(--danger);} + .tag-gray{background:#FAFAFA;color:#666;border:1px solid var(--border);} .link{color:var(--primary);cursor:pointer;font-size:var(--font-sm);}.link:hover{color:#40a9ff;} + .fee-total{font-weight:600;color:var(--text-primary);} + .fee-sub{color:var(--text-secondary);} + /* 固定列:前三列 + 最后一列 */ + .sticky-l1{position:sticky;left:0;z-index:6;min-width:64px;} + .sticky-l2{position:sticky;left:64px;z-index:6;min-width:88px;} + .sticky-l3{position:sticky;left:152px;z-index:6;min-width:104px;box-shadow:2px 0 6px rgba(0,0,0,0.08);} + .sticky-r{position:sticky;right:0;z-index:6;min-width:72px;box-shadow:-2px 0 6px rgba(0,0,0,0.08);} + thead .sticky-l1,thead .sticky-l2,thead .sticky-l3,thead .sticky-r{z-index:8;background:#FAFAFA;} + tbody .sticky-l1,tbody .sticky-l2,tbody .sticky-l3,tbody .sticky-r{background:#fff;} + tbody tr:hover .sticky-l1,tbody tr:hover .sticky-l2,tbody tr:hover .sticky-l3,tbody tr:hover .sticky-r{background:#F8FBFF;} + .sticky-l1:not(.sticky-l3):not(.sticky-r),.sticky-l2{box-shadow:none;} + /* 详情弹窗 */ + .modal-mask{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.45);z-index:200;align-items:center;justify-content:center;} + .modal-mask.open{display:flex;} + .modal{background:#fff;border-radius:var(--radius-md);width:880px;max-width:92vw;max-height:86vh;display:flex;flex-direction:column;box-shadow:var(--shadow-md);} + .modal__header{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-bottom:1px solid var(--border);flex-shrink:0;} + .modal__title{font-size:var(--font-lg);font-weight:600;} + .modal__close{width:28px;height:28px;border:none;background:none;cursor:pointer;color:var(--text-secondary);font-size:18px;line-height:1;border-radius:var(--radius-sm);} + .modal__close:hover{color:var(--text-primary);background:#F5F5F5;} + .modal__body{padding:20px 24px;overflow-y:auto;} + .modal__footer{display:flex;justify-content:flex-end;gap:8px;padding:14px 24px;border-top:1px solid var(--border);flex-shrink:0;} + .detail-section{margin-bottom:20px;} + .detail-section:last-child{margin-bottom:0;} + .detail-section__title{font-size:var(--font-sm);font-weight:600;color:var(--primary);margin-bottom:10px;padding-left:8px;border-left:3px solid var(--primary);} + .detail-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px 24px;} + .detail-item{display:flex;align-items:baseline;gap:8px;font-size:var(--font-sm);min-width:0;} + .detail-item label{color:var(--text-secondary);white-space:nowrap;flex-shrink:0;} + .detail-item span{color:var(--text-primary);word-break:break-all;} + .detail-fee{width:100%;border-collapse:collapse;margin-top:4px;} + .detail-fee th,.detail-fee td{border:1px solid var(--border);padding:10px 14px;font-size:var(--font-sm);text-align:right;} + .detail-fee th{background:#FAFAFA;color:var(--text-secondary);font-weight:500;text-align:center;} + .detail-fee td:first-child,.detail-fee th:first-child{text-align:center;} + .detail-fee .fee-total-row td{font-weight:600;background:#F8FBFF;} /* 分页 */ .pagination{display:flex;align-items:center;justify-content:flex-end;padding:16px 24px;gap:8px;border-top:1px solid var(--border);} .pagination span{font-size:var(--font-sm);color:var(--text-secondary);} .page-btn{width:32px;height:32px;border:1px solid var(--border);border-radius:var(--radius-sm);background:#fff;cursor:pointer;font-size:var(--font-sm);display:inline-flex;align-items:center;justify-content:center;transition:all .2s;} .page-btn:hover,.page-btn.active{background:var(--primary);color:#fff;border-color:var(--primary);} + .sub-tabs{display:flex;gap:32px;background:#fff;border-radius:var(--radius-md);padding:0 24px;margin-bottom:16px;box-shadow:var(--shadow-sm);border-bottom:1px solid var(--border);} + .sub-tabs__item{padding:14px 2px;font-size:var(--font-base);color:var(--text-secondary);cursor:pointer;position:relative;transition:color .2s;user-select:none;} + .sub-tabs__item:hover{color:var(--primary);} + .sub-tabs__item.active{color:var(--primary);font-weight:600;} + .sub-tabs__item.active::after{content:'';position:absolute;left:0;right:0;bottom:-1px;height:2px;background:var(--primary);border-radius:1px;} @@ -111,17 +139,31 @@ 员工预约跟踪 单位预约统计 - 员工参检情况 + 已参检员工信息 医院实时预约人数 医生实时检查情况 医生检查人数统计 医院预约情况统计 + 胃肠镜问卷信息 + 胃肠镜体检人员配置
+ +
+
常规体检
+
胃肠镜体检
+
+
+
+ + +
+
- +
+
+ + +
+
+ + +
+
+ + +
+ + +
@@ -168,13 +240,38 @@ - + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + +
序号单位部门员工编号姓名身份证号预约状态体检类型体检医院预约日期系统体检状态医院体检状态体检日期体检年份操作序号姓名员工编号性别年龄身份证号单位部门机构分类婚姻状况体检类型防癌项预约状态预约信息预约日期体检状态体检医院体检日期体检总费用体检实际费用体检年度体检计划操作
必检费用选检费用妇科费用防癌筛查费用
1公司机关办公室342423王旭430626198502560029已预约常规体检延安医院2026-03-10已体检(2/12)已体检(2/12)2026-03-102026详情
2公司机关办公室324321张武430626198502560029已预约胃肠镜体检延安医院2026-03-10未体检未体检2026-03-102026详情
3第一采油厂生产一队456789李明610402199003150045未预约常规体检泾河医院----2026详情
1王旭34242341430626198502560029公司机关办公室一类机构已婚已婚体检-已预约已成功预约并更新项目2026-03-10已出报告延安医院2026-03-12¥2,380.00¥1,200.00¥680.00-¥500.0020262026年度胃肠镜专项体检详情
2张武32432138430626198806120037公司机关办公室一类机构已婚已婚体检Septin9已预约体检预约成功2026-03-10已体检延安医院2026-03-11¥1,860.00¥1,100.00¥260.00-¥500.0020262026年度职工常规体检详情
3李明45678936610402199003150045第一采油厂生产一队二类机构未婚未婚体检-已预约体检预约成功2026-03-15体检中泾河医院2026-03-16¥1,560.00¥1,100.00¥460.00--20262026年度职工常规体检详情
4赵芳51233645610402198109230028第二采油厂地质研究所一类机构已婚已婚体检两项都有未预约--未体检--¥1,920.00¥1,100.00¥320.00¥350.00¥150.0020262026年度职工常规体检详情
5陈强60117852610402197407080011第三采油厂集输大队三类机构已婚已婚体检CA724已取消预约-2026-03-08未体检市中心医院-¥2,380.00¥1,200.00¥680.00-¥500.0020262026年度胃肠镜专项体检详情
@@ -192,7 +289,219 @@
+ + + + + + + diff --git a/web-admin/health-checkup/mid-hospital-appointment.html b/web-admin/health-checkup/mid-hospital-appointment.html index fd812da..804883b 100644 --- a/web-admin/health-checkup/mid-hospital-appointment.html +++ b/web-admin/health-checkup/mid-hospital-appointment.html @@ -111,11 +111,13 @@ 员工预约跟踪 单位预约统计 - 员工参检情况 + 已参检员工信息 医院实时预约人数 医生实时检查情况 医生检查人数统计 医院预约情况统计 + 胃肠镜问卷信息 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/mid-hospital-realtime.html b/web-admin/health-checkup/mid-hospital-realtime.html index 05a4f7d..5a33c9b 100644 --- a/web-admin/health-checkup/mid-hospital-realtime.html +++ b/web-admin/health-checkup/mid-hospital-realtime.html @@ -111,11 +111,13 @@ 员工预约跟踪 单位预约统计 - 员工参检情况 + 已参检员工信息 医院实时预约人数 医生实时检查情况 医生检查人数统计 医院预约情况统计 + 胃肠镜问卷信息 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/mid-participation.html b/web-admin/health-checkup/mid-participation.html index a134bb2..3298f9b 100644 --- a/web-admin/health-checkup/mid-participation.html +++ b/web-admin/health-checkup/mid-participation.html @@ -3,7 +3,7 @@ -健康体检 - 员工参检情况 | 健康CQ原型 +健康体检 - 已参检员工信息 | 健康CQ原型 @@ -111,17 +143,33 @@ 员工预约跟踪 单位预约统计 - 员工参检情况 + 已参检员工信息 医院实时预约人数 医生实时检查情况 医生检查人数统计 医院预约情况统计 + 胃肠镜问卷信息 + 胃肠镜体检人员配置
+ +
+
常规体检
+
胃肠镜体检
+
+ + +
+
+ + +
+
- +
+
+ + +
+
+ + +
+
+ + + + +
+
+ + +
+ + + + + + + +
-
员工参检情况列表
+
已参检员工信息列表
- + - - + +
序号单位部门员工编号姓名身份证号体检医院体检计划体检编号系统体检状态医院体检状态预约日期体检日期已检项/全部体检年份操作序号单位部门姓名员工编号身份证号体检编号系统体检状态医院体检状态体检医院体检年度体检计划预约日期体检日期已检项/全部操作
1公司机关办公室342423王旭430626198502560029延安医院2025年度常规体检80038237已体检已终审2025-07-102025-07-2212/202025详情
2公司机关办公室324321张武430626198502560029延安医院2025年度常规体检80037100已体检已终审2025-07-102025-07-2212/202025详情
1公司机关办公室王旭34242343062619850256002980038237已体检已终审延安医院20252025年度常规体检2025-07-102025-07-2212/20详情
2公司机关办公室张武32432143062619850256002980037100已体检已终审延安医院20252025年度常规体检2025-07-102025-07-2212/20详情
@@ -189,9 +269,264 @@
+ + + +
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + + +
+
+ + +
+ + +
+ + +
+ + + + + +
+ + +
+
+
已参检员工信息列表
+
+
+ + + + + + + + + + + +
序号单位部门姓名员工编号身份证号系统体检状态体检医院体检年度体检计划预约日期体检日期已检项/全部操作
1公司机关办公室王旭342423430626198502560029已体检长安胃肠镜医院20262026年度胃肠镜专项体检2026-04-102026-04-152/2详情
2第一采油厂生产一队李明456789610402199003150045已体检长安胃肠镜医院20262026年度胃肠镜专项体检2026-04-102026-04-152/2详情
3第二采油厂地质研究所赵芳512336610402198109230028体检中长安胃肠镜医院20262026年度胃肠镜专项体检2026-04-112026-04-161/2详情
+
+ +
+
+ + + + + + diff --git a/web-admin/health-checkup/mid-unit-appointment.html b/web-admin/health-checkup/mid-unit-appointment.html index 037770e..e3af0ba 100644 --- a/web-admin/health-checkup/mid-unit-appointment.html +++ b/web-admin/health-checkup/mid-unit-appointment.html @@ -82,6 +82,13 @@ .progress-bar__fill{height:100%;border-radius:4px;background:var(--primary);} .progress-bar__fill.high{background:var(--success);} .progress-bar__fill.low{background:var(--warning);} + /* 顶部体检类型 Tab */ + .top-tabs{display:flex;gap:24px;margin-bottom:16px;background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);padding:0 24px;} + .top-tab{padding:14px 4px;font-size:var(--font-base);color:var(--text-secondary);cursor:pointer;border-bottom:2px solid transparent;transition:all .2s;user-select:none;} + .top-tab:hover{color:var(--primary);} + .top-tab.active{color:var(--primary);font-weight:600;border-bottom-color:var(--primary);} + .tab-panel{display:none;} + .tab-panel.active{display:block;} @@ -115,15 +122,25 @@ 员工预约跟踪 单位预约统计 - 员工参检情况 + 已参检员工信息 医院实时预约人数 医生实时检查情况 医生检查人数统计 医院预约情况统计 + 胃肠镜问卷信息 + 胃肠镜体检人员配置
+ +
+ +
常规体检
+
胃肠镜体检
+
+ +
@@ -164,15 +181,15 @@ - + - - + +
序号单位已选项目人数已预约情况未预约人数体检年份序号单位应体检人数已选项目人数已预约情况未预约人数体检年份
已预约人数已参检人数未参检人数
1第一采油厂500040003000100010002025
2第二采油厂500040003000100010002025
1第一采油厂5200500040003000100010002025
2第二采油厂5200500040003000100010002025
@@ -188,6 +205,74 @@
+ + +
+ +
+
+ + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
二级单位
+
三级单位
+
+
+
+ + + + + + + + + + + + + +
序号单位应体检人数填写问卷人数已预约情况未预约人数体检年份
已预约人数已参检人数未参检人数
1第一采油厂5200360040003000100010002025
2第二采油厂5200360040003000100010002025
+
+ +
+
diff --git a/web-admin/health-checkup/post-cancer-screening.html b/web-admin/health-checkup/post-cancer-screening.html index b82d877..7e0069d 100644 --- a/web-admin/health-checkup/post-cancer-screening.html +++ b/web-admin/health-checkup/post-cancer-screening.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-contracted-hospital.html b/web-admin/health-checkup/post-contracted-hospital.html index 513ddea..e90b876 100644 --- a/web-admin/health-checkup/post-contracted-hospital.html +++ b/web-admin/health-checkup/post-contracted-hospital.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-doctor-count.html b/web-admin/health-checkup/post-doctor-count.html index 04224a4..050ceb1 100644 --- a/web-admin/health-checkup/post-doctor-count.html +++ b/web-admin/health-checkup/post-doctor-count.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-hospital-count.html b/web-admin/health-checkup/post-hospital-count.html index 99aa43a..3c6c277 100644 --- a/web-admin/health-checkup/post-hospital-count.html +++ b/web-admin/health-checkup/post-hospital-count.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-item-stat.html b/web-admin/health-checkup/post-item-stat.html index 788cc4e..7901cba 100644 --- a/web-admin/health-checkup/post-item-stat.html +++ b/web-admin/health-checkup/post-item-stat.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-report-employee.html b/web-admin/health-checkup/post-report-employee.html index 48a22d6..4a4d5cc 100644 --- a/web-admin/health-checkup/post-report-employee.html +++ b/web-admin/health-checkup/post-report-employee.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-report-roster.html b/web-admin/health-checkup/post-report-roster.html index 1dd8350..d5fb40a 100644 --- a/web-admin/health-checkup/post-report-roster.html +++ b/web-admin/health-checkup/post-report-roster.html @@ -165,6 +165,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-report-unmatched.html b/web-admin/health-checkup/post-report-unmatched.html index 57a4b3c..93af6b8 100644 --- a/web-admin/health-checkup/post-report-unmatched.html +++ b/web-admin/health-checkup/post-report-unmatched.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-standard-stat.html b/web-admin/health-checkup/post-standard-stat.html index 727d0fd..f7bd4ed 100644 --- a/web-admin/health-checkup/post-standard-stat.html +++ b/web-admin/health-checkup/post-standard-stat.html @@ -134,6 +134,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/post-unit-count.html b/web-admin/health-checkup/post-unit-count.html index 0afcbbe..d1c4cd1 100644 --- a/web-admin/health-checkup/post-unit-count.html +++ b/web-admin/health-checkup/post-unit-count.html @@ -140,6 +140,7 @@ 体检结果名册 + 胃肠镜体检人员配置 diff --git a/web-admin/health-checkup/pre-gastro-employee.html b/web-admin/health-checkup/pre-gastro-employee.html new file mode 100644 index 0000000..84f42dd --- /dev/null +++ b/web-admin/health-checkup/pre-gastro-employee.html @@ -0,0 +1,268 @@ + + + + + +健康体检 - 员工预选信息 | 健康CQ原型 + + + + +
+ + +
+ + + 返回首页 + +
+ 系统管理员 ▾ +
+
+ + + + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +
+ + +
+ +
+
+
员工预选信息
+
+
+ + + + + + + + + + + + + +
姓名员工编号身份证号单位部门预选计划预选医院提交时间
陈伟30078912610103197809220015采油四厂工程技术科2026年度胃肠镜预选宁夏宝石花医院2026-03-05 10:23
刘芳30082345610103197905120034采油四厂综合办2026年度胃肠镜预选宁夏宝石花医院2026-03-06 14:41
王强30085678610103197403080024采油五厂采油队2026年度胃肠镜预选长庆油田医院2026-04-02 09:15
李娜30088901610103198511090026采油五厂财务科2026年度胃肠镜预选长安胃肠镜医院2026-04-08 16:52
赵敏30094567610103196807260046采油六厂地质所2026年度胃肠镜预选长庆油田医院2026-04-11 11:30
+
+ +
+
+ + + + + diff --git a/web-admin/health-checkup/pre-gastro-plan.html b/web-admin/health-checkup/pre-gastro-plan.html new file mode 100644 index 0000000..4da754e --- /dev/null +++ b/web-admin/health-checkup/pre-gastro-plan.html @@ -0,0 +1,382 @@ + + + + + +健康体检 - 单位预选计划 | 健康CQ原型 + + + + +
+ + +
+ + + 返回首页 + +
+ 系统管理员 ▾ +
+
+ + + + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +
+ +
+ +
+
+
单位预选计划
+
+
+ + + + + + + + + + + +
单位体检年度预选计划名称预选开始日期预选结束日期创建日期有效标志操作
采油四厂20262026年度胃肠镜预选2026-03-012026-03-312026-02-20有效编辑 删除
采油五厂20262026年度胃肠镜预选2026-04-012026-04-302026-03-15有效编辑 删除
采油六厂20252025年度胃肠镜预选2025-03-012025-03-312025-02-18无效编辑 删除
+
+ +
+
+ + + + + + + diff --git a/web-admin/health-checkup/pre-gastro-stat.html b/web-admin/health-checkup/pre-gastro-stat.html new file mode 100644 index 0000000..7887616 --- /dev/null +++ b/web-admin/health-checkup/pre-gastro-stat.html @@ -0,0 +1,373 @@ + + + + + +健康体检 - 预选信息统计 | 健康CQ原型 + + + + +
+ + +
+ + + 返回首页 + +
+ 系统管理员 ▾ +
+
+ + + + +
+
+
部门
+
医院
+
+ + +
+
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +
+ + +
+ +
+
+
预选信息统计(部门)
+
+
+ + + + + + + + + + + + +
单位部门体检年度预选计划预选医院预选人数
采油四厂工程技术科20262026年度胃肠镜预选宁夏宝石花医院12
采油四厂综合办20262026年度胃肠镜预选宁夏宝石花医院8
采油五厂采油队20262026年度胃肠镜预选长庆油田医院23
采油六厂地质所20262026年度胃肠镜预选长安胃肠镜医院6
+
+ +
+
+ + + +
+ + + + + + + diff --git a/web-admin/health-checkup/pre-hospital-scope.html b/web-admin/health-checkup/pre-hospital-scope.html index 3d25985..e3107e6 100644 --- a/web-admin/health-checkup/pre-hospital-scope.html +++ b/web-admin/health-checkup/pre-hospital-scope.html @@ -167,12 +167,23 @@ diff --git a/web-admin/health-checkup/pre-item-combo-template.html b/web-admin/health-checkup/pre-item-combo-template.html index a9a8d7c..044941a 100644 --- a/web-admin/health-checkup/pre-item-combo-template.html +++ b/web-admin/health-checkup/pre-item-combo-template.html @@ -167,12 +167,23 @@ diff --git a/web-admin/health-checkup/pre-item-exception.html b/web-admin/health-checkup/pre-item-exception.html index 22ab571..0f4e099 100644 --- a/web-admin/health-checkup/pre-item-exception.html +++ b/web-admin/health-checkup/pre-item-exception.html @@ -158,12 +158,23 @@ diff --git a/web-admin/health-checkup/pre-item-hospital-fee.html b/web-admin/health-checkup/pre-item-hospital-fee.html index 6839eba..127949d 100644 --- a/web-admin/health-checkup/pre-item-hospital-fee.html +++ b/web-admin/health-checkup/pre-item-hospital-fee.html @@ -176,12 +176,23 @@ diff --git a/web-admin/health-checkup/pre-item-required.html b/web-admin/health-checkup/pre-item-required.html index ff4c3c1..6e06daa 100644 --- a/web-admin/health-checkup/pre-item-required.html +++ b/web-admin/health-checkup/pre-item-required.html @@ -159,12 +159,23 @@ diff --git a/web-admin/health-checkup/pre-item-unit-fee.html b/web-admin/health-checkup/pre-item-unit-fee.html index c70a121..f511e5c 100644 --- a/web-admin/health-checkup/pre-item-unit-fee.html +++ b/web-admin/health-checkup/pre-item-unit-fee.html @@ -130,12 +130,23 @@ diff --git a/web-admin/health-checkup/pre-plan.html b/web-admin/health-checkup/pre-plan.html index 5bd7c8d..729b32e 100644 --- a/web-admin/health-checkup/pre-plan.html +++ b/web-admin/health-checkup/pre-plan.html @@ -112,12 +112,23 @@ diff --git a/web-admin/health-checkup/pre-quota-group.html b/web-admin/health-checkup/pre-quota-group.html index d4cc60e..602d875 100644 --- a/web-admin/health-checkup/pre-quota-group.html +++ b/web-admin/health-checkup/pre-quota-group.html @@ -105,12 +105,23 @@ diff --git a/web-admin/health-checkup/pre-quota-personal.html b/web-admin/health-checkup/pre-quota-personal.html index 68f5cfe..06d25d6 100644 --- a/web-admin/health-checkup/pre-quota-personal.html +++ b/web-admin/health-checkup/pre-quota-personal.html @@ -134,12 +134,23 @@ diff --git a/web-admin/health-checkup/pre-special-cancer.html b/web-admin/health-checkup/pre-special-cancer.html index 02ba5a1..850e199 100644 --- a/web-admin/health-checkup/pre-special-cancer.html +++ b/web-admin/health-checkup/pre-special-cancer.html @@ -172,12 +172,23 @@ diff --git a/web-admin/health-checkup/pre-special-cta.html b/web-admin/health-checkup/pre-special-cta.html index e6c4f7a..6b6c217 100644 --- a/web-admin/health-checkup/pre-special-cta.html +++ b/web-admin/health-checkup/pre-special-cta.html @@ -159,12 +159,23 @@ diff --git a/web-admin/health-checkup/pre-special-gastro.html b/web-admin/health-checkup/pre-special-gastro.html index 652fe55..4588f80 100644 --- a/web-admin/health-checkup/pre-special-gastro.html +++ b/web-admin/health-checkup/pre-special-gastro.html @@ -175,12 +175,23 @@ @@ -286,7 +297,7 @@
-
胃肠镜体检人员
+
胃肠镜体检人员配置
diff --git a/web-admin/health-checkup/pre-special-hospital.html b/web-admin/health-checkup/pre-special-hospital.html index 22ff492..6a06522 100644 --- a/web-admin/health-checkup/pre-special-hospital.html +++ b/web-admin/health-checkup/pre-special-hospital.html @@ -159,12 +159,12 @@ diff --git a/web-admin/health-checkup/pre-special-occupation.html b/web-admin/health-checkup/pre-special-occupation.html index 688964c..c73eb3d 100644 --- a/web-admin/health-checkup/pre-special-occupation.html +++ b/web-admin/health-checkup/pre-special-occupation.html @@ -170,12 +170,23 @@