Commit 5e712cc7 authored by 赵伟庚's avatar 赵伟庚

Merge branch 'dev' into dev0217

parents 2da41777 89b15841
...@@ -82,7 +82,7 @@ const showMoreAction = (index) => { ...@@ -82,7 +82,7 @@ const showMoreAction = (index) => {
const getChildrenPath = (arr, temp = []) => { const getChildrenPath = (arr, temp = []) => {
arr.forEach((e) => { arr.forEach((e) => {
temp.push(e); temp.push(e.path);
if (e.children && e.children.length) { if (e.children && e.children.length) {
getChildrenPath(e.children, temp); getChildrenPath(e.children, temp);
} }
......
...@@ -792,6 +792,7 @@ const editAccount = (data) => { ...@@ -792,6 +792,7 @@ const editAccount = (data) => {
path: "/system/organization/org-user/edit", path: "/system/organization/org-user/edit",
query: { query: {
id: data.id, id: data.id,
orgId: selectOrgNode.value.organization_id,
}, },
}); });
} else { } 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