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'), ]);