🐛 修复更新菜单后查询条件错误.

This commit is contained in:
lijiahangmax
2024-08-11 23:06:59 +08:00
parent 613f86155c
commit 144a44673b
2 changed files with 6 additions and 3 deletions

View File

@@ -272,11 +272,13 @@
// 添加后回调
const addedCallback = () => {
formRef.value.resetFields();
loadMenuData(true);
};
// 更新后回调
const updatedCallback = () => {
formRef.value.resetFields();
loadMenuData(true);
};

View File

@@ -17,7 +17,7 @@ const columns = [
title: '类型',
dataIndex: 'type',
slotName: 'type',
width: 80,
width: 68,
}, {
title: '排序',
dataIndex: 'sort',
@@ -32,20 +32,21 @@ const columns = [
title: '权限标识',
dataIndex: 'permission',
slotName: 'permission',
minWidth: 138,
minWidth: 168,
ellipsis: true,
tooltip: true
}, {
title: '组件名称',
dataIndex: 'component',
slotName: 'component',
minWidth: 138,
minWidth: 218,
ellipsis: true,
tooltip: true,
}, {
title: '链接路径',
dataIndex: 'path',
slotName: 'path',
width: 168,
ellipsis: true,
tooltip: true,
}, {