diff --git a/src/bg-ui/bg-nav-list.vue b/src/bg-ui/bg-nav-list.vue index e487a06564cc2e7e63bf98043a13f29e853b0d72..12ddc10b967be329d60b1d5ee66581f4e8763a7d 100644 --- a/src/bg-ui/bg-nav-list.vue +++ b/src/bg-ui/bg-nav-list.vue @@ -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); } diff --git a/src/page/main/system/organization/index.vue b/src/page/main/system/organization/index.vue index 885442ef8a61ec61470c9c63268cce1635252e1d..ccacce66147d3f1f4b4beae9b29b1647af222773 100644 --- a/src/page/main/system/organization/index.vue +++ b/src/page/main/system/organization/index.vue @@ -792,6 +792,7 @@ const editAccount = (data) => { path: "/system/organization/org-user/edit", query: { id: data.id, + orgId: selectOrgNode.value.organization_id, }, }); } else {