修复住院医生工作站,临床遗嘱tab点击手术按钮弹窗无法渲染的问题
This commit is contained in:
@@ -351,7 +351,7 @@ const dbTotal = ref(0); // 数据库中的手术项目总数
|
|||||||
const checkedCount = computed(() => transferValue.value.length);
|
const checkedCount = computed(() => transferValue.value.length);
|
||||||
const leftPanelFormat = computed(() => ({
|
const leftPanelFormat = computed(() => ({
|
||||||
noChecked: ` 0/${dbTotal.value}`,
|
noChecked: ` 0/${dbTotal.value}`,
|
||||||
hasChecked: ` ${checked}/${dbTotal.value}`,
|
hasChecked: ` ${checkedCount.value}/${dbTotal.value}`,
|
||||||
}));
|
}));
|
||||||
// 递归查找树形科室节点
|
// 递归查找树形科室节点
|
||||||
const findTreeItem = (list, id) => {
|
const findTreeItem = (list, id) => {
|
||||||
@@ -510,7 +510,7 @@ const loadDictOptions = async () => {
|
|||||||
const res = await Promise.all([
|
const res = await Promise.all([
|
||||||
getDicts('surgery_level'),
|
getDicts('surgery_level'),
|
||||||
getDicts('anesthesia_type'),
|
getDicts('anesthesia_type'),
|
||||||
getDicts('surgery_site'),
|
getDicts('surgical_site'),
|
||||||
getDicts('incision_level'),
|
getDicts('incision_level'),
|
||||||
getDicts('surgery_type'),
|
getDicts('surgery_type'),
|
||||||
]);
|
]);
|
||||||
|
|||||||
Reference in New Issue
Block a user