@@ -48,9 +49,10 @@ const props = defineProps({
showDirectiveChoose: { type: Boolean, default: false },
showDMTip: { type: Boolean, default: false },
showMainTile: { type: Boolean, default: true },//是否展示标准指令库/标签库
+ showHldy: { type: Boolean, default: false },//是否展示护理单元
})
-const emit = defineEmits(['handleOrgDetail', 'handleOrgChoose', 'handleOrgInfo'])
+const emit = defineEmits(['handleOrgDetail', 'handleOrgChoose', 'handleOrgInfo','handleHldy'])
const orgTableList = ref
({ records: [], total: 0 })
const queryParam = reactive({})
@@ -88,6 +90,9 @@ function handleDetail(item: any) {
function handleInfo(item: any) {
emit('handleOrgInfo', item)
}
+function handleHldy(item: any) {
+ emit('handleHldy', item)
+}
function reload() {
directiveMainSelectedOrg.value = {}