Merge pull request '修复添加机构后,机构列表不会更新的问题' (#68) from skywolf627/Admin.NET.Pro:main into main

Reviewed-on: http://101.43.53.74:3000/Admin.NET/Admin.NET.Pro/pulls/68
This commit is contained in:
zuohuaijun 2024-07-21 11:08:24 +08:00
commit 2d96e3aebf

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;
};