修复添加机构后,机构列表不会更新的问题

This commit is contained in:
skywolf627 2024-07-21 10:52:02 +08:00
parent f52f7aa1ed
commit 4bc17a3be6

View File

@ -89,7 +89,7 @@ const props = defineProps({
title: String,
orgData: Array<SysOrg>,
});
const emits = defineEmits(['handleQuery']);
const emits = defineEmits(['reload']);
const ruleFormRef = ref();
const state = reactive({
isShowDialog: false,
@ -111,7 +111,7 @@ const openDialog = (row: any) => {
//
const closeDialog = () => {
emits('handleQuery', true);
emits('reload', true);
state.isShowDialog = false;
};