From 87b637ed493c5e8f0f8b4e2dad504579e8f9b2d9 Mon Sep 17 00:00:00 2001 From: wangjian963 <15215920+aprilry@user.noreply.gitee.com> Date: Tue, 2 Jun 2026 10:41:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BD=8F=E9=99=A2=E5=8C=BB?= =?UTF-8?q?=E7=94=9F=E5=B7=A5=E4=BD=9C=E7=AB=99=EF=BC=8C=E4=B8=B4=E5=BA=8A?= =?UTF-8?q?=E9=81=97=E5=98=B1tab=E7=82=B9=E5=87=BB=E6=89=8B=E6=9C=AF?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E5=BC=B9=E7=AA=97=E6=97=A0=E6=B3=95=E6=B8=B2?= =?UTF-8?q?=E6=9F=93=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../home/components/order/applicationForm/surgery.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue index 8524f4c22..d93853cf5 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue @@ -351,7 +351,7 @@ const dbTotal = ref(0); // 数据库中的手术项目总数 const checkedCount = computed(() => transferValue.value.length); const leftPanelFormat = computed(() => ({ noChecked: ` 0/${dbTotal.value}`, - hasChecked: ` ${checked}/${dbTotal.value}`, + hasChecked: ` ${checkedCount.value}/${dbTotal.value}`, })); // 递归查找树形科室节点 const findTreeItem = (list, id) => { @@ -510,7 +510,7 @@ const loadDictOptions = async () => { const res = await Promise.all([ getDicts('surgery_level'), getDicts('anesthesia_type'), - getDicts('surgery_site'), + getDicts('surgical_site'), getDicts('incision_level'), getDicts('surgery_type'), ]);