From 2f7830a3369f1252ab068149472174f05ac501fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E9=9F=B5=E7=90=B4?= <757188142@qq.com> Date: Mon, 1 Jun 2026 13:36:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E8=83=83=E8=82=A0?= =?UTF-8?q?=E9=95=9C=E9=A2=84=E7=BA=A6=E5=AE=8C=E6=88=90=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 确认预约后跳转至预约完成页,展示预约信息和体检须知。 Co-Authored-By: Claude Opus 4.6 --- .../health-checkup/gastro-date-selected.html | 187 ++++++++++++++++++ employee-app/health-checkup/gastro-date.html | 5 +- 2 files changed, 188 insertions(+), 4 deletions(-) create mode 100644 employee-app/health-checkup/gastro-date-selected.html diff --git a/employee-app/health-checkup/gastro-date-selected.html b/employee-app/health-checkup/gastro-date-selected.html new file mode 100644 index 0000000..075f70c --- /dev/null +++ b/employee-app/health-checkup/gastro-date-selected.html @@ -0,0 +1,187 @@ + + + + + + 胃肠镜预约 - 预约完成 + + + +
+
+ 12:00 +
+ + +
+
+ +
+
+ +
+
选择医院
+
+
填问卷
+
+
预约日期
+
+ + +
+
预约信息
+
+ 体检医院 + 宁夏宝石花医院 +
+
+ 体检员工 + 刘韵琴 +
+
+ 体检地址 + 银川市西夏区怀远路148号 +
+
+ 体检日期 + 2026年3月23日 +
+
+ 体检项目 + 胃肠镜体检 +
+
+ + +
+
体检须知
+
检查前3天请清淡饮食,避免高纤维、高脂肪食物。
+
检查前一天晚上需服用肠道清洁剂,具体用法请遵医嘱。
+
检查当天需空腹,禁食禁水至少8小时。
+
请携带本人身份证件按时前往医院。
+
若选择无痛胃肠镜,检查后24小时内请勿驾车。
+
若需取消预约,请至少提前一天操作。
+
+
+
+ +
+ + +
+
当前已预约胃肠镜检查,无法重新选择,请先取消预约
+
+ + + diff --git a/employee-app/health-checkup/gastro-date.html b/employee-app/health-checkup/gastro-date.html index 561b1f7..676be00 100644 --- a/employee-app/health-checkup/gastro-date.html +++ b/employee-app/health-checkup/gastro-date.html @@ -302,10 +302,7 @@ function closeConfirm() { document.getElementById('confirmModal').classList.add('hidden'); } function showSuccessToast() { closeConfirm(); - var toast = document.getElementById('successToast'); - toast.classList.add('show'); - clearTimeout(toastTimer); - toastTimer = setTimeout(function() { toast.classList.remove('show'); }, 2200); + window.location.href = 'gastro-date-selected.html'; }