From 1385faa9624bffbbcad426434f1e050f10caa19d Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 19 Jun 2026 04:20:39 +0800 Subject: [PATCH 1/2] =?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 From be495e2fe5be6da517abff66152637d90f998b57 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 19 Jun 2026 04:29:53 +0800 Subject: [PATCH 2/2] =?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 | 12 +++++------- 1 file changed, 5 insertions(+), 7 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 fe0c1e69a..af4be781f 100755 --- a/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue +++ b/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue @@ -1828,17 +1828,13 @@ defineExpose({ :deep(.el-dialog__body) { flex: 1; overflow-y: auto; + overflow: hidden; + min-height: 0; } :deep(.el-dialog__footer) { flex-shrink: 0; border-top: 1px solid #ebeef5; -} - - - overflow: hidden; - min-height: 0; - padding: 10px 20px; padding: 12px 20px 16px; } @@ -1847,4 +1843,6 @@ defineExpose({ :deep(.el-dialog) { width: 95vw !important; margin: 2.5vh auto; - } \ No newline at end of file + } +} + \ No newline at end of file