feat: 菜单删除后由 reload 改为 query

This commit is contained in:
写意 2025-07-11 22:20:07 +08:00
parent b7eea750e2
commit b54ba875cc

View File

@ -195,7 +195,7 @@ const handleDelete = (row: any) => {
.then(async () => {
await getAPI(SysMenuApi).apiSysMenuDeletePost({ id: row.id });
ElMessage.success(i18n.t('message.list.successDelete'));
await handleQuery(true);
await handleQuery(false);
})
.catch(() => {});
};