From 5ea218d9bffdd473cc4244006a14c1ef6c57bb92 Mon Sep 17 00:00:00 2001
From: wangjian963 <15215920+aprilry@user.noreply.gitee.com>
Date: Thu, 18 Jun 2026 10:04:24 +0800
Subject: [PATCH 1/2] =?UTF-8?q?682=20=E3=80=90=E4=BD=8F=E9=99=A2=E5=8C=BB?=
=?UTF-8?q?=E7=94=9F=E5=B7=A5=E4=BD=9C=E7=AB=99=E3=80=91=E5=8E=86=E5=8F=B2?=
=?UTF-8?q?=E5=8C=BB=E5=98=B1=E7=9A=84=E6=8A=A5=E5=8D=A1=E7=9A=84=E5=B8=83?=
=?UTF-8?q?=E5=B1=80=E6=9C=89=E4=BA=9B=E5=AD=97=E6=AE=B5=E8=A2=AB=E8=A6=86?=
=?UTF-8?q?=E7=9B=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/prescription/prescriptionHistory.vue | 1 +
1 file changed, 1 insertion(+)
diff --git a/healthlink-his-ui/src/views/doctorstation/components/prescription/prescriptionHistory.vue b/healthlink-his-ui/src/views/doctorstation/components/prescription/prescriptionHistory.vue
index 26fe18ff2..495eda946 100755
--- a/healthlink-his-ui/src/views/doctorstation/components/prescription/prescriptionHistory.vue
+++ b/healthlink-his-ui/src/views/doctorstation/components/prescription/prescriptionHistory.vue
@@ -3,6 +3,7 @@
v-model="drawer"
title="历史医嘱"
direction="ltr"
+ size="75%"
>
Date: Thu, 18 Jun 2026 10:07:44 +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 | 15 +++++++++------
1 file changed, 9 insertions(+), 6 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 4807e1b69..1512adfa5 100755
--- a/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue
+++ b/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue
@@ -1,5 +1,3 @@
-
@@ -34,7 +32,6 @@
v-loading="loading"
:data="surgeryList"
border
- :row-config="{ keyField: 'surgeryNo' }"
:row-class-name="getRowClassName"
height="calc(100vh - 250px)"
style="width: 100%"
@@ -199,7 +196,6 @@
v-model="open"
:title="title"
width="1200px"
- teleported
:close-on-click-modal="false"
@close="cancel"
>
@@ -1817,10 +1813,17 @@ defineExpose({
padding: 20px 0;
}
-/* Bug #770: 确保对话框表单内容可滚动,防止操作按钮遮盖字段 */
+/* Bug #770: 对话框 body 滚动区域限制,防止 footer 按钮遮盖表单字段 */
:deep(.el-dialog__body) {
- max-height: calc(100vh - 200px);
+ max-height: calc(100vh - 220px);
overflow-y: auto;
padding-bottom: 10px;
}
+
+/* Bug #770: 确保 footer 固定在对话框底部,不随内容滚动 */
+:deep(.el-dialog__footer) {
+ flex-shrink: 0;
+ border-top: 1px solid #ebeef5;
+ padding: 12px 20px;
+}