- {{ item }}
+ {{ timeItem }}
{
item.dispenseIds.forEach((d) => {
- ids.push({ ...d, dispenseTime: now });
+ ids.push({ ...d, executeTime: now });
});
});
if (ids.length === 0) {
From e38c5993a0ac21eacd3293a84f0770edc9939fc5 Mon Sep 17 00:00:00 2001
From: zhaoyun
Date: Tue, 16 Jun 2026 16:21:49 +0800
Subject: [PATCH 3/3] =?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 | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 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 64f3469fb..d4ea65da1 100755
--- a/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue
+++ b/healthlink-his-ui/src/views/doctorstation/components/surgery/surgeryApplication.vue
@@ -198,7 +198,7 @@
-
+
@@ -1815,4 +1817,11 @@ defineExpose({
text-align: center;
padding: 20px 0;
}
+
+/* Bug #770: 确保对话框表单内容可滚动,防止操作按钮遮盖字段 */
+:deep(.el-dialog__body) {
+ max-height: calc(100vh - 200px);
+ overflow-y: auto;
+ padding-bottom: 10px;
+}