feat: 体检模块完善 — 员工端新增胃肠镜体检流程,管理端各配置页新增筛选/弹窗等功能

- 员工端:新增胃肠镜体检待体检/已体检详情页,预约卡片「已完成」统一改为「已体检」
- 管理端:医院范围/套餐模板/项目异常/医院费用/单位费用/计划等配置页完善
- 管理端:群体额度新增体检年度筛选栏,个人额度新增「设置额度」弹窗
This commit is contained in:
liuyunqin
2026-08-14 17:56:04 +08:00
parent 6dacd91ca5
commit 44e7f322ff
16 changed files with 3830 additions and 151 deletions
@@ -128,7 +128,7 @@
<div class="tabs">
<a class="tabs__item tabs__item--active" href="my-appointments-all.html">全部</a>
<a class="tabs__item" href="my-appointments.html">待体检</a>
<a class="tabs__item" href="my-appointments-done.html">完成</a>
<a class="tabs__item" href="my-appointments-done.html">体检</a>
<a class="tabs__item" href="my-appointments-cancelled.html">已取消</a>
</div>
@@ -149,11 +149,11 @@
</div>
</div>
<!--完成 -->
<!--体检 -->
<div class="appointment-card" data-status="done">
<div class="appointment-card__top">
<div class="appointment-card__title">常规体检</div>
<div class="appointment-card__status appointment-card__status--done">完成</div>
<div class="appointment-card__status appointment-card__status--done">体检</div>
</div>
<div class="appointment-card__meta">
<div class="meta-item"><div class="meta-item__label">体检医院</div><div class="meta-item__value">宁夏宝石花医院</div></div>
@@ -116,7 +116,7 @@
<div class="tabs">
<a class="tabs__item" href="my-appointments-all.html">全部</a>
<a class="tabs__item" href="my-appointments.html">待体检</a>
<a class="tabs__item" href="my-appointments-done.html">完成</a>
<a class="tabs__item" href="my-appointments-done.html">体检</a>
<a class="tabs__item tabs__item--active" href="my-appointments-cancelled.html">已取消</a>
</div>
@@ -552,7 +552,7 @@
<div class="status-bar">
<div class="status-bar__left">
<div class="status-bar__dot" style="background:#52c41a;"></div>
<div class="status-bar__text" style="color:#52c41a;">完成</div>
<div class="status-bar__text" style="color:#52c41a;">体检</div>
</div>
</div>
@@ -654,7 +654,7 @@
return '<div class="project-item">' +
'<div class="project-item__icon project-item__icon--done">&#10003;</div>' +
'<div class="project-item__name">' + name + '</div>' +
'<div class="project-item__status project-item__status--done">已完成</div></div>';
'<div class="project-item__status project-item__status--done">已体检</div></div>';
}
document.getElementById('doneList').innerHTML = allProjects.map(function(n) { return renderItem(n); }).join('');
@@ -0,0 +1,395 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>胃肠镜预约详情</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--primary: #13c2c2;
--primary-dark: #0f9b9b;
--primary-light: #e6fffb;
--success-light: #f6ffed;
--success-text: #52c41a;
--danger: #ff4d4f;
--danger-light: #fff1f0;
--text-primary: #1a1a1a;
--text-secondary: #666666;
--text-muted: #8c8c8c;
--border: #e8f3f3;
--bg-page: #f0f2f5;
--bg-content: #f7f9fb;
--shadow: 0 10px 30px rgba(19, 194, 194, 0.08);
}
body {
background: var(--bg-page);
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', sans-serif;
color: var(--text-primary);
}
.phone-shell {
width: 390px;
min-height: 844px;
background: var(--bg-content);
border-radius: 44px;
box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 0 0 2px #e0e0e0;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
}
.phone-status-bar {
height: 44px;
background: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 24px;
font-size: 12px;
font-weight: 600;
flex-shrink: 0;
}
.phone-status-bar .time { font-size: 15px; font-weight: 700; }
.phone-status-bar .icons { display: flex; gap: 6px; align-items: center; }
.nav-bar {
height: 44px;
display: flex;
align-items: center;
padding: 0 16px;
background: #fff;
border-bottom: 1px solid #f0f0f0;
flex-shrink: 0;
position: relative;
}
.nav-back {
font-size: 18px;
color: var(--text-primary);
cursor: pointer;
line-height: 1;
text-decoration: none;
}
.nav-title {
position: absolute;
left: 50%;
transform: translateX(-50%);
font-size: 17px;
font-weight: 600;
color: var(--text-primary);
}
.scroll-content {
flex: 1;
overflow-y: auto;
background: linear-gradient(180deg, #effbfb 0%, #f7f9fb 180px, #f7f9fb 100%);
padding-bottom: 120px;
}
.scroll-content::-webkit-scrollbar { display: none; }
.page-body { padding: 16px; }
/* 预约状态栏 */
.status-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 16px;
margin-bottom: 14px;
}
.status-bar__left {
display: flex;
align-items: center;
gap: 8px;
}
.status-bar__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #fa8c16;
}
.status-bar__text {
font-size: 16px;
font-weight: 700;
color: #fa8c16;
}
.status-bar__btn {
padding: 6px 14px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
border: 1px solid rgba(255, 77, 79, 0.3);
background: var(--danger-light);
color: var(--danger);
cursor: pointer;
}
.status-bar__btn--disabled {
border: 1px solid #d9d9d9;
background: #f5f5f5;
color: #bfbfbf;
cursor: not-allowed;
}
.summary-card,
.info-card {
background: #fff;
border-radius: 20px;
padding: 18px 16px;
margin-top: 14px;
box-shadow: var(--shadow);
border: 1px solid rgba(19, 194, 194, 0.06);
}
.section-title {
font-size: 16px;
font-weight: 700;
margin-bottom: 14px;
}
.summary-list,
.info-list {
display: flex;
flex-direction: column;
gap: 14px;
}
.summary-item,
.info-item {
display: flex;
justify-content: space-between;
gap: 12px;
align-items: flex-start;
}
.summary-item__label,
.info-item__label {
font-size: 13px;
color: var(--text-muted);
flex-shrink: 0;
}
.summary-item__value,
.info-item__value {
font-size: 14px;
color: var(--text-primary);
font-weight: 600;
text-align: right;
line-height: 1.6;
}
.summary-item--fee {
margin-top: 2px;
padding: 14px;
border-radius: 18px;
background: linear-gradient(135deg, #f0fffe 0%, #f7fffd 100%);
border: 1px solid #d7f5f3;
align-items: center;
}
.summary-item--fee .summary-item__label {
color: var(--primary-dark);
font-weight: 600;
}
.summary-item--fee .summary-item__value {
color: var(--primary-dark);
font-size: 24px;
font-weight: 800;
}
/* 体检进度 */
.progress-card {
margin-top: 14px;
background: #fff;
border-radius: 20px;
padding: 18px 16px;
box-shadow: var(--shadow);
border: 1px solid rgba(19, 194, 194, 0.06);
}
.progress-card__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 14px;
}
.progress-card__title {
font-size: 16px;
font-weight: 700;
}
.progress-card__ratio {
font-size: 13px;
color: var(--primary-dark);
font-weight: 600;
}
.progress-bar-lg {
height: 10px;
border-radius: 999px;
background: #eef3f3;
overflow: hidden;
margin-bottom: 16px;
}
.progress-bar-lg__fill {
height: 100%;
border-radius: 999px;
background: linear-gradient(90deg, #13c2c2 0%, #5cdbd3 100%);
}
.project-tabs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-bottom: 14px;
}
.project-tabs__btn {
height: 34px;
border: none;
border-radius: 12px;
background: #f5f7fa;
color: var(--text-secondary);
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.project-tabs__btn--active {
background: var(--primary-light);
color: var(--primary-dark);
box-shadow: inset 0 0 0 1px rgba(19, 194, 194, 0.16);
}
.project-list { display: flex; flex-direction: column; gap: 8px; }
.project-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
border-radius: 14px;
background: #f9fbfb;
border: 1px solid #f0f5f5;
}
.project-item__icon {
width: 28px;
height: 28px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 14px;
}
.project-item__icon--done {
background: var(--success-light);
color: var(--success-text);
}
.project-item__icon--pending {
background: #fff7e6;
color: #fa8c16;
}
.project-item__name {
flex: 1;
font-size: 13px;
font-weight: 600;
color: var(--text-primary);
}
.project-item__status {
font-size: 12px;
font-weight: 600;
}
.project-item__status--done { color: var(--success-text); }
.project-item__status--pending { color: #fa8c16; }
.hidden { display: none !important; }
</style>
</head>
<body>
<div class="phone-shell">
<div class="phone-status-bar">
<span class="time">12:00</span>
<div class="icons">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 6l5 5 5-5"/><path d="M4 9l3 3 3-3" opacity="0.5"/></svg>
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="1" y="6" width="18" height="12" rx="2"/><path d="M21 10v4"/></svg>
</div>
</div>
<div class="nav-bar">
<!-- [交互] 点击返回至: my-appointments-done.html -->
<a class="nav-back" href="my-appointments-done.html"></a>
<span class="nav-title">体检预约详情</span>
</div>
<div class="scroll-content">
<!-- 预约状态栏 -->
<div class="status-bar">
<div class="status-bar__left">
<div class="status-bar__dot" style="background:#52c41a;"></div>
<div class="status-bar__text" style="color:#52c41a;">已体检</div>
</div>
</div>
<div class="summary-card">
<div class="section-title">胃肠镜体检</div>
<div class="summary-list">
<div class="summary-item">
<div class="summary-item__label">体检医院</div>
<div class="summary-item__value">宁夏宝石花医院</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检员工</div>
<div class="summary-item__value">刘韵琴</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检地址</div>
<div class="summary-item__value">银川市西夏区怀远路148号</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检日期</div>
<div class="summary-item__value">2026年3月23日</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检项目</div>
<div class="summary-item__value">胃肠镜体检</div>
</div>
</div>
</div>
<!-- 体检进度 -->
<div class="progress-card">
<div class="progress-card__header">
<div class="progress-card__title">体检进度</div>
<div class="progress-card__ratio" id="progressRatio">2 / 2 项</div>
</div>
<div class="progress-bar-lg"><div class="progress-bar-lg__fill" id="progressFill" style="width: 100%;"></div></div>
<!-- [交互] 点击切换已检/未检 Tab -->
<div class="project-tabs" id="projectTabs">
<button class="project-tabs__btn project-tabs__btn--active" type="button" id="tabDone" onclick="switchTab(0)">已检项目 (0)</button>
<button class="project-tabs__btn" type="button" id="tabPending" onclick="switchTab(1)">未检项目 (0)</button>
</div>
<!-- 已检项目列表(JS动态生成) -->
<div class="project-list" id="doneList"></div>
<!-- 未检项目列表(默认隐藏,JS动态生成) -->
<div class="project-list hidden" id="pendingList"></div>
</div>
</div>
</div>
<script>
function switchTab(idx) {
var btns = document.querySelectorAll('.project-tabs__btn');
btns.forEach(function(b) { b.classList.remove('project-tabs__btn--active'); });
btns[idx].classList.add('project-tabs__btn--active');
document.getElementById('doneList').classList.toggle('hidden', idx !== 0);
document.getElementById('pendingList').classList.toggle('hidden', idx !== 1);
}
var totalCount = 2;
var doneCount = 2;
var allProjects = ['胃镜检查', '肠镜检查'];
function renderItem(name) {
return '<div class="project-item">' +
'<div class="project-item__icon project-item__icon--done">&#10003;</div>' +
'<div class="project-item__name">' + name + '</div>' +
'<div class="project-item__status project-item__status--done">已体检</div></div>';
}
document.getElementById('doneList').innerHTML = allProjects.map(function(n) { return renderItem(n); }).join('');
document.getElementById('pendingList').innerHTML = '<div class="project-item"><div class="project-item__icon project-item__icon--done">&#10003;</div><div class="project-item__name">当前预约项目已全部完成</div><div class="project-item__status project-item__status--done">完成</div></div>';
document.getElementById('tabDone').textContent = '已检项目 (' + doneCount + ')';
document.getElementById('tabPending').textContent = '未检项目 (0)';
document.getElementById('progressRatio').textContent = doneCount + ' / ' + totalCount + ' 项';
document.getElementById('progressFill').style.width = '100%';
</script>
</body>
</html>
@@ -0,0 +1,765 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>胃肠镜预约详情</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--primary: #13c2c2;
--primary-dark: #0f9b9b;
--primary-light: #e6fffb;
--success-light: #f6ffed;
--success-text: #52c41a;
--danger: #ff4d4f;
--danger-light: #fff1f0;
--text-primary: #1a1a1a;
--text-secondary: #666666;
--text-muted: #8c8c8c;
--border: #e8f3f3;
--bg-page: #f0f2f5;
--bg-content: #f7f9fb;
--shadow: 0 10px 30px rgba(19, 194, 194, 0.08);
}
body {
background: var(--bg-page);
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', sans-serif;
color: var(--text-primary);
}
.phone-shell {
width: 390px;
min-height: 844px;
background: var(--bg-content);
border-radius: 44px;
box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 0 0 2px #e0e0e0;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
}
.phone-status-bar {
height: 44px;
background: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 24px;
font-size: 12px;
font-weight: 600;
flex-shrink: 0;
}
.phone-status-bar .time { font-size: 15px; font-weight: 700; }
.phone-status-bar .icons { display: flex; gap: 6px; align-items: center; }
.nav-bar {
height: 44px;
display: flex;
align-items: center;
padding: 0 16px;
background: #fff;
border-bottom: 1px solid #f0f0f0;
flex-shrink: 0;
position: relative;
}
.nav-back {
font-size: 18px;
color: var(--text-primary);
cursor: pointer;
line-height: 1;
text-decoration: none;
}
.nav-title {
position: absolute;
left: 50%;
transform: translateX(-50%);
font-size: 17px;
font-weight: 600;
color: var(--text-primary);
}
.scroll-content {
flex: 1;
overflow-y: auto;
background: linear-gradient(180deg, #effbfb 0%, #f7f9fb 180px, #f7f9fb 100%);
padding-bottom: 120px;
}
.scroll-content::-webkit-scrollbar { display: none; }
.page-body { padding: 16px; }
/* 预约状态栏 */
.status-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 16px;
margin-bottom: 14px;
}
.status-bar__left {
display: flex;
align-items: center;
gap: 8px;
}
.status-bar__dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #fa8c16;
}
.status-bar__text {
font-size: 16px;
font-weight: 700;
color: #fa8c16;
}
.status-bar__btn {
padding: 6px 14px;
border-radius: 999px;
font-size: 12px;
font-weight: 600;
border: 1px solid rgba(255, 77, 79, 0.3);
background: var(--danger-light);
color: var(--danger);
cursor: pointer;
}
.status-bar__btn--disabled {
border: 1px solid #d9d9d9;
background: #f5f5f5;
color: #bfbfbf;
cursor: not-allowed;
}
/* 确认弹窗 */
.confirm-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.5);
z-index: 200;
justify-content: center;
align-items: center;
}
.confirm-overlay--visible { display: flex; }
.confirm-dialog {
width: 300px;
background: #fff;
border-radius: 20px;
padding: 24px 20px 18px;
text-align: center;
}
.confirm-dialog__title {
font-size: 17px;
font-weight: 700;
margin-bottom: 14px;
color: var(--text-primary);
}
.confirm-dialog__info {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 20px;
padding: 12px;
background: #f9fbfb;
border-radius: 12px;
border: 1px solid #f0f5f5;
}
.confirm-dialog__row {
display: flex;
justify-content: space-between;
font-size: 13px;
}
.confirm-dialog__label { color: var(--text-muted); }
.confirm-dialog__value { color: var(--text-primary); font-weight: 600; }
.confirm-dialog__actions {
display: flex;
gap: 10px;
}
.confirm-dialog__btn {
flex: 1;
height: 42px;
border-radius: 21px;
font-size: 14px;
font-weight: 600;
border: none;
cursor: pointer;
}
.confirm-dialog__btn--cancel {
background: #f5f7fa;
color: var(--text-secondary);
border: 1px solid #ebeff2;
}
.confirm-dialog__btn--confirm {
background: var(--danger);
color: #fff;
}
.toast {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0,0,0,0.76);
color: #fff;
padding: 14px 24px;
border-radius: 12px;
font-size: 14px;
z-index: 200;
text-align: center;
max-width: 280px;
line-height: 1.6;
display: none;
}
.toast--visible { display: block; }
.status-card {
background: linear-gradient(135deg, #13c2c2 0%, #36cfc9 100%);
border-radius: 24px;
padding: 22px 18px;
color: #fff;
box-shadow: 0 12px 28px rgba(19, 194, 194, 0.24);
}
.status-card__badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border-radius: 999px;
background: rgba(255,255,255,0.18);
font-size: 12px;
font-weight: 600;
margin-bottom: 14px;
}
.status-card__title {
font-size: 24px;
font-weight: 700;
line-height: 1.25;
margin-bottom: 8px;
}
.status-card__desc {
font-size: 13px;
line-height: 1.7;
opacity: 0.92;
}
.summary-card,
.info-card {
background: #fff;
border-radius: 20px;
padding: 18px 16px;
margin-top: 14px;
box-shadow: var(--shadow);
border: 1px solid rgba(19, 194, 194, 0.06);
}
.section-title {
font-size: 16px;
font-weight: 700;
margin-bottom: 14px;
}
.summary-list,
.info-list {
display: flex;
flex-direction: column;
gap: 14px;
}
.summary-item,
.info-item {
display: flex;
justify-content: space-between;
gap: 12px;
align-items: flex-start;
}
.summary-item__label,
.info-item__label {
font-size: 13px;
color: var(--text-muted);
flex-shrink: 0;
}
.summary-item__value,
.info-item__value {
font-size: 14px;
color: var(--text-primary);
font-weight: 600;
text-align: right;
line-height: 1.6;
}
.summary-item--fee {
margin-top: 2px;
padding: 14px;
border-radius: 18px;
background: linear-gradient(135deg, #f0fffe 0%, #f7fffd 100%);
border: 1px solid #d7f5f3;
align-items: center;
}
.summary-item--fee .summary-item__label {
color: var(--primary-dark);
font-weight: 600;
}
.summary-item--fee .summary-item__value {
color: var(--primary-dark);
font-size: 24px;
font-weight: 800;
}
.person-card {
margin-top: 14px;
background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
border-radius: 20px;
padding: 16px;
border: 1px solid #e4f7f5;
box-shadow: var(--shadow);
}
.person-card__header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
}
.person-card__avatar {
width: 48px;
height: 48px;
border-radius: 16px;
background: linear-gradient(135deg, #13c2c2 0%, #5cdbd3 100%);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 700;
flex-shrink: 0;
}
.person-card__name {
font-size: 16px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 4px;
}
.person-card__meta {
font-size: 12px;
color: var(--text-muted);
}
.tips-card {
margin-top: 14px;
background: #fff;
border-radius: 20px;
padding: 16px;
border: 1px solid #eef5f5;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.tips-card__title {
font-size: 15px;
font-weight: 700;
margin-bottom: 10px;
}
.tips-card__item {
display: flex;
gap: 8px;
font-size: 13px;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 8px;
}
.tips-card__item:last-child { margin-bottom: 0; }
.tips-card__dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--primary);
margin-top: 8px;
flex-shrink: 0;
}
.qrcode-wrap {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.qrcode-wrap__img {
width: 160px;
height: 160px;
border-radius: 12px;
border: 1px solid #eef5f5;
cursor: pointer;
transition: transform 0.2s;
}
.qrcode-wrap__img:hover { transform: scale(1.04); }
.qrcode-wrap__hint {
font-size: 12px;
color: var(--text-muted);
}
/* 二维码放大遮罩 */
.qr-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.6);
z-index: 100;
justify-content: center;
align-items: center;
cursor: pointer;
}
.qr-overlay--visible { display: flex; }
.qr-overlay__img {
width: 260px;
height: 260px;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
/* 体检进度 */
.progress-card {
margin-top: 14px;
background: #fff;
border-radius: 20px;
padding: 18px 16px;
box-shadow: var(--shadow);
border: 1px solid rgba(19, 194, 194, 0.06);
}
.progress-card__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 14px;
}
.progress-card__title {
font-size: 16px;
font-weight: 700;
}
.progress-card__ratio {
font-size: 13px;
color: var(--primary-dark);
font-weight: 600;
}
.progress-bar-lg {
height: 10px;
border-radius: 999px;
background: #eef3f3;
overflow: hidden;
margin-bottom: 16px;
}
.progress-bar-lg__fill {
height: 100%;
border-radius: 999px;
background: linear-gradient(90deg, #13c2c2 0%, #5cdbd3 100%);
}
.project-tabs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-bottom: 14px;
}
.project-tabs__btn {
height: 34px;
border: none;
border-radius: 12px;
background: #f5f7fa;
color: var(--text-secondary);
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.project-tabs__btn--active {
background: var(--primary-light);
color: var(--primary-dark);
box-shadow: inset 0 0 0 1px rgba(19, 194, 194, 0.16);
}
.project-list { display: flex; flex-direction: column; gap: 8px; }
.project-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
border-radius: 14px;
background: #f9fbfb;
border: 1px solid #f0f5f5;
}
.project-item__icon {
width: 28px;
height: 28px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 14px;
}
.project-item__icon--done {
background: var(--success-light);
color: var(--success-text);
}
.project-item__icon--pending {
background: #fff7e6;
color: #fa8c16;
}
.project-item__name {
flex: 1;
font-size: 13px;
font-weight: 600;
color: var(--text-primary);
}
.project-item__status {
font-size: 12px;
font-weight: 600;
}
.project-item__status--done { color: var(--success-text); }
.project-item__status--pending { color: #fa8c16; }
.hidden { display: none !important; }
.bottom-actions {
position: absolute;
left: 16px;
right: 16px;
bottom: 18px;
display: flex;
gap: 12px;
padding-bottom: 16px;
}
.bottom-actions__btn {
flex: 1;
height: 48px;
border-radius: 24px;
font-size: 15px;
font-weight: 600;
border: none;
cursor: pointer;
}
.bottom-actions__btn--ghost {
background: var(--danger-light);
color: var(--danger);
border: 1px solid rgba(255, 77, 79, 0.2);
}
.bottom-actions__btn--primary {
background: linear-gradient(135deg, #13c2c2 0%, #36cfc9 100%);
color: #fff;
box-shadow: 0 10px 20px rgba(19, 194, 194, 0.22);
}
</style>
</head>
<body>
<div class="phone-shell">
<div class="phone-status-bar">
<span class="time">12:00</span>
<div class="icons">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M1 6l5 5 5-5"/><path d="M4 9l3 3 3-3" opacity="0.5"/></svg>
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="1" y="6" width="18" height="12" rx="2"/><path d="M21 10v4"/></svg>
</div>
</div>
<div class="nav-bar">
<!-- [交互] 点击返回至: my-appointments.html -->
<a class="nav-back" href="my-appointments.html"></a>
<span class="nav-title">体检预约详情</span>
</div>
<div class="scroll-content">
<!-- 预约状态栏 -->
<div class="status-bar">
<div class="status-bar__left">
<div class="status-bar__dot"></div>
<div class="status-bar__text">待体检</div>
</div>
<button class="status-bar__btn" id="cancelBtn">取消预约</button>
</div>
<div class="summary-card">
<div class="section-title">胃肠镜体检</div>
<div class="summary-list">
<div class="summary-item">
<div class="summary-item__label">体检医院</div>
<div class="summary-item__value">宁夏宝石花医院</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检员工</div>
<div class="summary-item__value">刘韵琴</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检地址</div>
<div class="summary-item__value">银川市西夏区怀远路148号</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检日期</div>
<div class="summary-item__value">2026年3月23日</div>
</div>
<div class="summary-item">
<div class="summary-item__label">体检项目</div>
<div class="summary-item__value">胃肠镜体检</div>
</div>
</div>
</div>
<!-- 体检须知 -->
<div class="tips-card">
<div class="tips-card__title">体检须知</div>
<div class="tips-card__item"><span class="tips-card__dot"></span><span>检查前3天请清淡饮食,避免高纤维、高脂肪食物。</span></div>
<div class="tips-card__item"><span class="tips-card__dot"></span><span>检查前一天晚上需服用肠道清洁剂,具体用法请遵医嘱。</span></div>
<div class="tips-card__item"><span class="tips-card__dot"></span><span>检查当天需空腹,禁食禁水至少8小时。</span></div>
<div class="tips-card__item"><span class="tips-card__dot"></span><span>请携带本人身份证件按时前往医院。</span></div>
<div class="tips-card__item"><span class="tips-card__dot"></span><span>若选择无痛胃肠镜,检查后24小时内请勿驾车。</span></div>
<div class="tips-card__item"><span class="tips-card__dot"></span><span>若需取消预约,请至少提前一天操作。</span></div>
</div>
<div class="person-card">
<div class="section-title">体检签到码</div>
<div class="qrcode-wrap">
<!-- [交互] 点击二维码放大展示 -->
<svg class="qrcode-wrap__img" onclick="document.getElementById('qrOverlay').classList.add('qr-overlay--visible')" viewBox="0 0 160 160" xmlns="http://www.w3.org/2000/svg">
<rect width="160" height="160" fill="#fff"/>
<rect x="12" y="12" width="40" height="40" rx="4" fill="#1a1a1a"/>
<rect x="18" y="18" width="28" height="28" rx="2" fill="#fff"/>
<rect x="24" y="24" width="16" height="16" rx="2" fill="#1a1a1a"/>
<rect x="108" y="12" width="40" height="40" rx="4" fill="#1a1a1a"/>
<rect x="114" y="18" width="28" height="28" rx="2" fill="#fff"/>
<rect x="120" y="24" width="16" height="16" rx="2" fill="#1a1a1a"/>
<rect x="12" y="108" width="40" height="40" rx="4" fill="#1a1a1a"/>
<rect x="18" y="114" width="28" height="28" rx="2" fill="#fff"/>
<rect x="24" y="120" width="16" height="16" rx="2" fill="#1a1a1a"/>
<rect x="60" y="12" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="12" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="12" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="24" width="8" height="8" fill="#1a1a1a"/><rect x="84" y="24" width="8" height="8" fill="#1a1a1a"/>
<rect x="68" y="36" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="36" width="8" height="8" fill="#1a1a1a"/>
<rect x="12" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="28" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="44" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="68" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="108" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="132" y="60" width="8" height="8" fill="#1a1a1a"/>
<rect x="20" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="44" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="60" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="84" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="108" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="124" y="72" width="8" height="8" fill="#1a1a1a"/>
<rect x="12" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="36" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="60" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="100" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="84" width="8" height="8" fill="#1a1a1a"/>
<rect x="28" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="52" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="68" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="116" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="96" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="108" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="108" width="8" height="8" fill="#1a1a1a"/><rect x="100" y="108" width="8" height="8" fill="#1a1a1a"/><rect x="124" y="108" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="120" width="8" height="8" fill="#1a1a1a"/><rect x="84" y="120" width="8" height="8" fill="#1a1a1a"/><rect x="108" y="120" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="120" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="116" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="132" width="8" height="8" fill="#1a1a1a"/>
<rect x="68" y="140" width="8" height="8" fill="#1a1a1a"/><rect x="100" y="140" width="8" height="8" fill="#1a1a1a"/><rect x="132" y="140" width="8" height="8" fill="#1a1a1a"/>
</svg>
<span class="qrcode-wrap__hint">点击二维码可放大查看</span>
</div>
</div>
<!-- 体检进度 -->
<div class="progress-card">
<div class="progress-card__header">
<div class="progress-card__title">体检进度</div>
<div class="progress-card__ratio" id="progressRatio">0 / 2 项</div>
</div>
<div class="progress-bar-lg"><div class="progress-bar-lg__fill" id="progressFill" style="width: 0%;"></div></div>
<!-- [交互] 点击切换已检/未检 Tab -->
<div class="project-tabs" id="projectTabs">
<button class="project-tabs__btn project-tabs__btn--active" type="button" id="tabDone" onclick="switchTab(0)">已检项目 (0)</button>
<button class="project-tabs__btn" type="button" id="tabPending" onclick="switchTab(1)">未检项目 (0)</button>
</div>
<!-- 已检项目列表(JS动态生成) -->
<div class="project-list" id="doneList"></div>
<!-- 未检项目列表(默认隐藏,JS动态生成) -->
<div class="project-list hidden" id="pendingList"></div>
</div>
</div>
</div>
<!-- 二维码放大遮罩 -->
<div class="qr-overlay" id="qrOverlay" onclick="this.classList.remove('qr-overlay--visible')">
<svg class="qr-overlay__img" viewBox="0 0 160 160" xmlns="http://www.w3.org/2000/svg">
<rect width="160" height="160" fill="#fff"/>
<rect x="12" y="12" width="40" height="40" rx="4" fill="#1a1a1a"/><rect x="18" y="18" width="28" height="28" rx="2" fill="#fff"/><rect x="24" y="24" width="16" height="16" rx="2" fill="#1a1a1a"/>
<rect x="108" y="12" width="40" height="40" rx="4" fill="#1a1a1a"/><rect x="114" y="18" width="28" height="28" rx="2" fill="#fff"/><rect x="120" y="24" width="16" height="16" rx="2" fill="#1a1a1a"/>
<rect x="12" y="108" width="40" height="40" rx="4" fill="#1a1a1a"/><rect x="18" y="114" width="28" height="28" rx="2" fill="#fff"/><rect x="24" y="120" width="16" height="16" rx="2" fill="#1a1a1a"/>
<rect x="60" y="12" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="12" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="12" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="24" width="8" height="8" fill="#1a1a1a"/><rect x="84" y="24" width="8" height="8" fill="#1a1a1a"/>
<rect x="68" y="36" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="36" width="8" height="8" fill="#1a1a1a"/>
<rect x="12" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="28" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="44" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="68" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="108" y="60" width="8" height="8" fill="#1a1a1a"/><rect x="132" y="60" width="8" height="8" fill="#1a1a1a"/>
<rect x="20" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="44" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="60" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="84" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="108" y="72" width="8" height="8" fill="#1a1a1a"/><rect x="124" y="72" width="8" height="8" fill="#1a1a1a"/>
<rect x="12" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="36" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="60" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="100" y="84" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="84" width="8" height="8" fill="#1a1a1a"/>
<rect x="28" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="52" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="68" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="116" y="96" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="96" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="108" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="108" width="8" height="8" fill="#1a1a1a"/><rect x="100" y="108" width="8" height="8" fill="#1a1a1a"/><rect x="124" y="108" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="120" width="8" height="8" fill="#1a1a1a"/><rect x="84" y="120" width="8" height="8" fill="#1a1a1a"/><rect x="108" y="120" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="120" width="8" height="8" fill="#1a1a1a"/>
<rect x="60" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="76" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="92" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="116" y="132" width="8" height="8" fill="#1a1a1a"/><rect x="140" y="132" width="8" height="8" fill="#1a1a1a"/>
<rect x="68" y="140" width="8" height="8" fill="#1a1a1a"/><rect x="100" y="140" width="8" height="8" fill="#1a1a1a"/><rect x="132" y="140" width="8" height="8" fill="#1a1a1a"/>
</svg>
</div>
<script>
function switchTab(idx) {
var btns = document.querySelectorAll('.project-tabs__btn');
btns.forEach(function(b) { b.classList.remove('project-tabs__btn--active'); });
btns[idx].classList.add('project-tabs__btn--active');
document.getElementById('doneList').classList.toggle('hidden', idx !== 0);
document.getElementById('pendingList').classList.toggle('hidden', idx !== 1);
}
function showToast(msg) {
var t = document.getElementById('cancelToast');
t.textContent = msg;
t.classList.add('toast--visible');
setTimeout(function() { t.classList.remove('toast--visible'); }, 2000);
}
// 读取 URL 参数
var params = new URLSearchParams(window.location.search);
var doneCount = parseInt(params.get('done') || '0', 10);
var totalCount = parseInt(params.get('total') || '2', 10);
var hospital = params.get('hospital') || '宁夏宝石花医院';
var date = params.get('date') || '2026-03-23';
// 动态更新体检进度
var pct = totalCount > 0 ? Math.round(doneCount / totalCount * 1000) / 10 : 0;
document.getElementById('progressRatio').textContent = doneCount + ' / ' + totalCount + ' 项';
document.getElementById('progressFill').style.width = pct + '%';
// 胃肠镜体检项目池
var allProjects = ['胃镜检查', '肠镜检查'];
var projects = allProjects.slice(0, totalCount);
var doneProjects = projects.slice(0, doneCount);
var pendingProjects = projects.slice(doneCount);
function renderItem(name, isDone) {
return '<div class="project-item">' +
'<div class="project-item__icon project-item__icon--' + (isDone ? 'done' : 'pending') + '">' +
(isDone ? '&#10003;' : '&#9679;') + '</div>' +
'<div class="project-item__name">' + name + '</div>' +
'<div class="project-item__status project-item__status--' + (isDone ? 'done' : 'pending') + '">' +
(isDone ? '已体检' : '未检') + '</div></div>';
}
document.getElementById('doneList').innerHTML = doneProjects.map(function(n) { return renderItem(n, true); }).join('');
document.getElementById('pendingList').innerHTML = pendingProjects.map(function(n) { return renderItem(n, false); }).join('');
document.getElementById('tabDone').textContent = '已检项目 (' + doneCount + ')';
document.getElementById('tabPending').textContent = '未检项目 (' + pendingProjects.length + ')';
// done=0 时默认显示未检 Tab
if (doneCount === 0) {
switchTab(1);
}
// 根据进度控制取消按钮状态
var cancelBtn = document.getElementById('cancelBtn');
if (doneCount > 0) {
// 已有体检进度 → 按钮禁用,点击弹 toast
cancelBtn.classList.add('status-bar__btn--disabled');
cancelBtn.disabled = false;
cancelBtn.onclick = function() {
showToast('您当前已体检了部分项目,无法取消预约');
};
} else {
// 无体检进度 → 按钮可点击,弹二次确认
cancelBtn.classList.remove('status-bar__btn--disabled');
cancelBtn.disabled = false;
cancelBtn.onclick = function() {
document.getElementById('confirmHospital').textContent = hospital;
document.getElementById('confirmDate').textContent = date;
document.getElementById('confirmOverlay').classList.add('confirm-overlay--visible');
};
}
</script>
<div class="toast" id="cancelToast"></div>
<!-- 取消预约二次确认弹窗 -->
<div class="confirm-overlay" id="confirmOverlay">
<div class="confirm-dialog">
<div class="confirm-dialog__title">是否确认取消预约</div>
<div class="confirm-dialog__info">
<div class="confirm-dialog__row">
<span class="confirm-dialog__label">体检医院</span>
<span class="confirm-dialog__value" id="confirmHospital">宁夏宝石花医院</span>
</div>
<div class="confirm-dialog__row">
<span class="confirm-dialog__label">预约日期</span>
<span class="confirm-dialog__value" id="confirmDate">2026-03-23</span>
</div>
</div>
<div class="confirm-dialog__actions">
<button class="confirm-dialog__btn confirm-dialog__btn--cancel" onclick="document.getElementById('confirmOverlay').classList.remove('confirm-overlay--visible')">再想想</button>
<button class="confirm-dialog__btn confirm-dialog__btn--confirm" onclick="window.location.href='my-appointments.html'">确认取消</button>
</div>
</div>
</div>
</body>
</html>
@@ -713,7 +713,7 @@
(isDone ? '&#10003;' : '&#9679;') + '</div>' +
'<div class="project-item__name">' + name + '</div>' +
'<div class="project-item__status project-item__status--' + (isDone ? 'done' : 'pending') + '">' +
(isDone ? '已完成' : '未检') + '</div></div>';
(isDone ? '已体检' : '未检') + '</div></div>';
}
document.getElementById('doneList').innerHTML = doneProjects.map(function(n) { return renderItem(n, true); }).join('');
@@ -121,7 +121,7 @@
<div class="tabs">
<a class="tabs__item" href="my-appointments-all.html">全部</a>
<a class="tabs__item" href="my-appointments.html">待体检</a>
<a class="tabs__item tabs__item--active" href="my-appointments-done.html">完成</a>
<a class="tabs__item tabs__item--active" href="my-appointments-done.html">体检</a>
<a class="tabs__item" href="my-appointments-cancelled.html">已取消</a>
</div>
@@ -129,7 +129,7 @@
<a class="appointment-card" href="my-appointments-detail-done.html" style="text-decoration:none;color:inherit;">
<div class="appointment-card__top">
<div class="appointment-card__title">常规体检</div>
<div class="appointment-card__status appointment-card__status--done">完成</div>
<div class="appointment-card__status appointment-card__status--done">体检</div>
</div>
<div class="appointment-card__meta">
<div class="meta-item"><div class="meta-item__label">体检医院</div><div class="meta-item__value">宁夏宝石花医院</div></div>
@@ -141,14 +141,14 @@
</div>
</a>
<a class="appointment-card" href="my-appointments-detail-done.html" style="text-decoration:none;color:inherit;">
<a class="appointment-card" href="my-appointments-detail-gastro-done.html" style="text-decoration:none;color:inherit;">
<div class="appointment-card__top">
<div class="appointment-card__title">胃肠镜体检</div>
<div class="appointment-card__status appointment-card__status--done">完成</div>
<div class="appointment-card__status appointment-card__status--done">体检</div>
</div>
<div class="appointment-card__meta">
<div class="meta-item"><div class="meta-item__label">体检医院</div><div class="meta-item__value">宁夏宝石花医院</div></div>
<div class="meta-item"><div class="meta-item__label">预约日期</div><div class="meta-item__value">2026-02-18</div></div>
<div class="meta-item"><div class="meta-item__label">预约日期</div><div class="meta-item__value">2026-03-23</div></div>
</div>
<div class="appointment-card__progress">
<div class="progress-head"><span>完成进度</span><span>2/2</span></div>
@@ -278,7 +278,7 @@
<div class="tabs">
<a class="tabs__item" href="my-appointments-all.html">全部</a>
<a class="tabs__item tabs__item--active" href="my-appointments.html">待体检</a>
<a class="tabs__item" href="my-appointments-done.html">完成</a>
<a class="tabs__item" href="my-appointments-done.html">体检</a>
<a class="tabs__item" href="my-appointments-cancelled.html">已取消</a>
</div>
@@ -333,6 +333,30 @@
<div class="progress-bar"><div class="progress-bar__fill" style="width: 0%;"></div></div>
</div>
</a>
<a class="appointment-card" data-status="pending" href="my-appointments-detail-gastro.html?done=0&total=2&hospital=宁夏宝石花医院&date=2026-03-23" style="text-decoration:none;color:inherit;">
<div class="appointment-card__top">
<div class="appointment-card__title">胃肠镜体检</div>
<div class="appointment-card__status appointment-card__status--pending">待体检</div>
</div>
<div class="appointment-card__meta">
<div class="meta-item">
<div class="meta-item__label">体检医院</div>
<div class="meta-item__value">宁夏宝石花医院</div>
</div>
<div class="meta-item">
<div class="meta-item__label">预约日期</div>
<div class="meta-item__value">2026-03-23</div>
</div>
</div>
<div class="appointment-card__progress">
<div class="progress-head">
<span>体检进度</span>
<span>0/2</span>
</div>
<div class="progress-bar"><div class="progress-bar__fill" style="width: 0%;"></div></div>
</div>
</a>
</div>
</div>
</div>