From fc38844eb94ab4ad37f60ea576e28c80f32420cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=AF=E6=99=AE?= <18691763612@163.com> Date: Fri, 17 Apr 2026 18:30:59 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=BA=9F=E5=BC=83=E4=B8=93=E5=AE=B6/?= =?UTF-8?q?=E5=B0=8F=E5=8A=A9=E6=89=8B=E8=AF=A6=E6=83=85=E9=A1=B5=EF=BC=8C?= =?UTF-8?q?=E5=9B=BE=E6=96=87=E5=92=A8=E8=AF=A2=E6=94=B9=E7=94=A8=E5=86=85?= =?UTF-8?q?=E8=81=94=E5=AF=B9=E8=AF=9D=E5=BC=B9=E7=AA=97=EF=BC=8C=E5=AF=B9?= =?UTF-8?q?=E8=AF=9D=E6=B0=94=E6=B3=A1=E5=A2=9E=E5=8A=A0=E5=8F=91=E9=80=81?= =?UTF-8?q?=E4=BA=BA=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - archive-personal-detail.html: 图文咨询和小助手查看对话从iframe加载废弃页面改为内联modal弹窗 - history-expert.html / history-assistant.html: 对话气泡上方新增发送人名称显示 - 删除废弃页面 history-expert-detail.html、history-assistant-detail.html - 更新PRD文档和页面截图 Co-Authored-By: Claude Opus 4.6 --- index.html | 2 +- .../archive-personal-detail.html | 101 +++++-- .../health-consult/config-department.html | 5 - web-admin/health-consult/config-disease.html | 4 - web-admin/health-consult/config-hospital.html | 5 - web-admin/health-consult/config-phrase.html | 9 - .../health-consult/consult-record-detail.html | 4 - web-admin/health-consult/doc/PRD.md | 112 +++----- .../doc/screenshots/config-phrase.jpg | Bin 93100 -> 79222 bytes .../doc/screenshots/consult-record-detail.jpg | Bin 78511 -> 0 bytes .../doc/screenshots/consult-record-detail.png | Bin 0 -> 63192 bytes .../screenshots/history-assistant-detail.jpg | Bin 93997 -> 0 bytes .../screenshots/history-assistant-dialog.png | Bin 0 -> 22665 bytes .../doc/screenshots/history-expert-detail.jpg | Bin 109305 -> 0 bytes .../doc/screenshots/history-expert-detail.png | Bin 0 -> 25445 bytes .../history-assistant-detail.html | 200 -------------- .../health-consult/history-assistant.html | 13 +- .../health-consult/history-evaluation.html | 4 +- .../health-consult/history-expert-detail.html | 256 ------------------ web-admin/health-consult/history-expert.html | 21 +- 共性需求说明.md | 2 +- 21 files changed, 152 insertions(+), 586 deletions(-) delete mode 100644 web-admin/health-consult/doc/screenshots/consult-record-detail.jpg create mode 100644 web-admin/health-consult/doc/screenshots/consult-record-detail.png delete mode 100644 web-admin/health-consult/doc/screenshots/history-assistant-detail.jpg create mode 100644 web-admin/health-consult/doc/screenshots/history-assistant-dialog.png delete mode 100644 web-admin/health-consult/doc/screenshots/history-expert-detail.jpg create mode 100644 web-admin/health-consult/doc/screenshots/history-expert-detail.png delete mode 100644 web-admin/health-consult/history-assistant-detail.html delete mode 100644 web-admin/health-consult/history-expert-detail.html diff --git a/index.html b/index.html index 5dc0d21..2c5f812 100644 --- a/index.html +++ b/index.html @@ -142,7 +142,7 @@ body { background: var(--background); font-family: -apple-system, BlinkMacSystem
健康长庆升级项目 · 高保真交互原型
-
点击模块卡片跳转至对应模块主页,点击页数徽章查看全部页面
+
点击模块卡片跳转至对应模块主页,点击页数徽章查看全部页面,点击PRD文档在线预览详细功能说明
diff --git a/web-admin/health-consult/archive-personal-detail.html b/web-admin/health-consult/archive-personal-detail.html index 502ed6f..5604eca 100644 --- a/web-admin/health-consult/archive-personal-detail.html +++ b/web-admin/health-consult/archive-personal-detail.html @@ -91,6 +91,28 @@ .overlay-modal__close{position:absolute;top:12px;right:12px;width:32px;height:32px;border-radius:50%;background:rgba(0,0,0,0.04);border:none;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#999;z-index:10;transition:all .15s;} .overlay-modal__close:hover{background:rgba(0,0,0,0.08);color:#333;} .overlay-modal iframe{border:none;display:block;} + .modal{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.45);z-index:1000;align-items:center;justify-content:center;} + .modal.open{display:flex;} + .modal-content{background:#fff;border-radius:var(--radius-md);width:90%;max-width:600px;max-height:80vh;overflow-y:auto;box-shadow:0 4px 16px rgba(0,0,0,0.15);} + .modal-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid var(--border);} + .modal-title{font-size:var(--font-base);font-weight:600;} + .modal-close{background:none;border:none;font-size:20px;cursor:pointer;color:var(--text-secondary);padding:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;} + .modal-close:hover{color:var(--text-primary);} + .modal-info{padding:16px 24px;background:#FAFAFA;border-bottom:1px solid var(--border);display:grid;grid-template-columns:repeat(2,1fr);gap:16px;} + .modal-info-item{display:flex;flex-direction:column;gap:4px;} + .modal-info-label{font-size:var(--font-xs);color:var(--text-secondary);} + .modal-info-value{font-size:var(--font-sm);color:var(--text-primary);font-weight:500;} + .modal-body{padding:24px;} + .chat-message{display:flex;margin-bottom:16px;gap:12px;} + .chat-message.user{flex-direction:row-reverse;} + .chat-avatar{width:36px;height:36px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:var(--font-sm);flex-shrink:0;} + .chat-message.user .chat-avatar{background:#E8E8E8;color:var(--text-primary);} + .chat-body{display:flex;flex-direction:column;max-width:70%;} + .chat-name{font-size:var(--font-xs);color:var(--text-secondary);margin-bottom:4px;} + .chat-message.user .chat-name{text-align:right;} + .chat-bubble{padding:12px 16px;border-radius:12px;background:#F0F0F0;color:var(--text-primary);font-size:var(--font-sm);line-height:1.6;word-break:break-word;} + .chat-message.user .chat-bubble{background:var(--primary);color:#fff;} + .chat-time{font-size:var(--font-xs);color:var(--text-secondary);margin-top:4px;text-align:center;margin-bottom:12px;} @@ -266,8 +288,8 @@ 2026-04-09 09:35 23分钟 ★★★★★ - - 查看对话 + + 查看对话 2 @@ -302,7 +324,7 @@ 2026-04-07 14:30 30分钟 ★★★★★ - 查看对话 + 查看对话 4 @@ -375,8 +397,8 @@ 2026-04-14 08:35 2026-04-14 08:38 8分钟 - - 查看对话 + + 查看对话 2 @@ -386,7 +408,7 @@ 2026-04-13 09:50 2026-04-13 10:05 20分钟 - 查看对话 + 查看对话 3 @@ -396,7 +418,7 @@ 2026-04-12 14:02 — 35分钟 - 查看对话 + 查看对话 4 @@ -406,7 +428,7 @@ 2026-04-10 10:14 2026-04-10 10:15 3分钟 - 查看对话 + 查看对话 5 @@ -416,7 +438,7 @@ 2026-04-09 16:01 2026-04-09 16:08 8分钟 - 查看对话 + 查看对话 @@ -434,8 +456,8 @@ - - + +
@@ -443,6 +465,19 @@
+ + + +