From 3bf7e04a044c66c7f126c1002749fbb90b178887 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Tue, 19 May 2026 16:09:20 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#469:=20=E6=A0=B9=E5=9B=A0+?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=96=B9=E6=A1=88=E6=91=98=E8=A6=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/inpatientDoctor/home/components/order/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue index dcde8aa3..3671cd6d 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue @@ -429,6 +429,8 @@ const props = defineProps({ }); const isAdding = ref(false); const isSaving = ref(false); +// 标记双击编辑的是否为已有数据的行(用于保存后是否自动添加下一行) +const wasDoubleClickEdit = ref(false); const prescriptionRef = ref(); const expandOrder = ref([]); //目前的展开行 const stockList = ref([]);