diff --git a/emergency-app/assistant/workbench/text-chat.html b/emergency-app/assistant/workbench/text-chat.html index 0a18d4c..944df89 100644 --- a/emergency-app/assistant/workbench/text-chat.html +++ b/emergency-app/assistant/workbench/text-chat.html @@ -167,8 +167,8 @@ body { background: #f0f2f5; display: flex; justify-content: center; align-items:
🖼️
图库 - -
+ +
👨‍⚕️
推送专家
@@ -198,6 +198,10 @@ if (consultType === 'assistant') { tag.style.background = '#f9f0ff'; document.getElementById('info-divider').style.display = 'none'; document.getElementById('expert-info').style.display = 'none'; +} else { + // 咨询专家模式:隐藏结束咨询按钮和推送专家功能 + document.getElementById('end-consult-btn').style.display = 'none'; + document.getElementById('push-expert-item').style.display = 'none'; } diff --git a/emergency-app/expert/workbench/text-chat.html b/emergency-app/expert/workbench/text-chat.html index 1db1c65..9a99956 100644 --- a/emergency-app/expert/workbench/text-chat.html +++ b/emergency-app/expert/workbench/text-chat.html @@ -46,6 +46,12 @@ body { background: #f0f2f5; display: flex; justify-content: center; align-items: .bubble-record__tag--blue { color: #1677ff; background: #e8f4ff; } .bubble-record__tag--orange { color: #d46b08; background: #fff7e6; } .bubble-record__footer { display: flex; align-items: center; justify-content: flex-end; padding: 6px 12px 10px; font-size: 12px; color: #1677ff; gap: 2px; } +/* 常用语分类与列表 */ +.quick-cat { font-size: 12px; padding: 4px 12px; border-radius: 14px; background: #f5f5f5; color: #666; cursor: pointer; user-select: none; transition: all .2s; } +.quick-cat.active { background: #e6f4ff; color: #1677ff; font-weight: 600; } +.quick-item { font-size: 13px; color: #1a1a1a; padding: 8px 0; border-bottom: 1px solid #f0f0f0; cursor: pointer; } +.quick-item:last-child { border-bottom: none; } +.quick-item:active { color: #1677ff; } @@ -139,14 +145,25 @@ body { background: #f0f2f5; display: flex; justify-content: center; align-items:
-