This commit is contained in:
Your Name
2026-03-18 14:53:09 +08:00
parent 338b104d50
commit 7832514f28
315 changed files with 7071 additions and 1136 deletions
+10 -10
View File
@@ -190,8 +190,8 @@ const open = async (data: { patientId: number; patientName: string; diagnosisId?
visible.value = true
posX.value = 100
posY.value = 80
callKitX.value = Math.max(0, (window.innerWidth - 600) / 2)
callKitY.value = Math.max(0, (window.innerHeight - 436) / 2)
callKitX.value = Math.max(0, (window.innerWidth - 375) / 2)
callKitY.value = Math.max(0, (window.innerHeight - 667) / 2)
patientName.value = data.patientName
patientId.value = data.patientId
diagnosisId.value = data.diagnosisId || null
@@ -549,15 +549,15 @@ defineExpose({ open })
align-items: center;
}
/* TUICallKit 可拖动容器 */
/* TUICallKit 可拖动容器 - 手机尺寸 (375x667) */
.chat-dialog-call-kit-wrapper {
position: fixed;
width: 600px;
height: 436px;
width: 375px;
height: 667px;
max-width: 90vw;
z-index: 300000;
background: #1a1a1a;
border-radius: 12px;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
display: flex;
@@ -565,8 +565,8 @@ defineExpose({ open })
}
.call-kit-drag-handle {
height: 36px;
padding: 0 16px;
height: 32px;
padding: 0 12px;
background: #2a2a2a;
display: flex;
align-items: center;
@@ -576,7 +576,7 @@ defineExpose({ open })
flex-shrink: 0;
.drag-handle-text {
font-size: 14px;
font-size: 13px;
color: #fff;
}
@@ -603,7 +603,7 @@ defineExpose({ open })
transform: none !important;
max-width: none !important;
max-height: none !important;
border-radius: 0 0 12px 12px;
border-radius: 0 0 24px 24px;
}
</style>