Commit 89b15841 authored by 赵伟庚's avatar 赵伟庚

[fix](侧边导航栏&组织管理): 父级导航条高亮,组织用户编辑完成后选中所选组织

parent 8c479849
......@@ -82,7 +82,7 @@ const showMoreAction = (index) => {
const getChildrenPath = (arr, temp = []) => {
arr.forEach((e) => {
temp.push(e);
temp.push(e.path);
if (e.children && e.children.length) {
getChildrenPath(e.children, temp);
}
......
......@@ -792,6 +792,7 @@ const editAccount = (data) => {
path: "/system/organization/org-user/edit",
query: {
id: data.id,
orgId: selectOrgNode.value.organization_id,
},
});
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment