fix:修复字典管理二级内容不展示问题

This commit is contained in:
liangdong
2026-01-04 20:15:26 +08:00
parent 80eec42473
commit 2978a31791
2 changed files with 2 additions and 1 deletions

View File

@@ -251,7 +251,7 @@ const load = async (
resolve: (data: User[]) => void
) => {
try {
const resp = await getNextDictMenu(row.id,parentId.value);
const resp = await getNextDictMenu(parentId.value,row.id);
console.log("获取当前返回的二级数据信息==>:",resp);
resolve([]);
} catch (error) {

View File

@@ -18,6 +18,7 @@ body {
--mj-border-color:#{$mj-border-color};
--mj-padding-standard:#{$mj-padding-standard};
--mj-popper-radius: 8px;
--el-color-primary:#2b65f6;
}