From 1385faa9624bffbbcad426434f1e050f10caa19d Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 19 Jun 2026 04:20:39 +0800 Subject: [PATCH] =?UTF-8?q?fix(#770):=20zhaoyun=20(=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=90=88=E5=85=A5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/surgery/surgeryApplication.vue | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue b/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue index 15887323e..fe0c1e69a 100755 --- a/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue +++ b/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue @@ -1828,12 +1828,23 @@ defineExpose({ :deep(.el-dialog__body) { flex: 1; overflow-y: auto; - padding-bottom: 10px; } :deep(.el-dialog__footer) { flex-shrink: 0; border-top: 1px solid #ebeef5; - padding: 12px 20px; } + + overflow: hidden; + min-height: 0; + padding: 10px 20px; + padding: 12px 20px 16px; +} + +/* 响应式:小屏幕下对话框宽度自适应 */ +@media (max-width: 1200px) { + :deep(.el-dialog) { + width: 95vw !important; + margin: 2.5vh auto; + } \ No newline at end of file