From 89b15841c2b828dd6851c0eb1078e6d91dd4bce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E4=BC=9F=E5=BA=9A?= Date: Fri, 6 Jan 2023 16:09:49 +0800 Subject: [PATCH] =?UTF-8?q?[fix](=E4=BE=A7=E8=BE=B9=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E6=A0=8F&=E7=BB=84=E7=BB=87=E7=AE=A1=E7=90=86):=20=E7=88=B6?= =?UTF-8?q?=E7=BA=A7=E5=AF=BC=E8=88=AA=E6=9D=A1=E9=AB=98=E4=BA=AE=EF=BC=8C?= =?UTF-8?q?=E7=BB=84=E7=BB=87=E7=94=A8=E6=88=B7=E7=BC=96=E8=BE=91=E5=AE=8C?= =?UTF-8?q?=E6=88=90=E5=90=8E=E9=80=89=E4=B8=AD=E6=89=80=E9=80=89=E7=BB=84?= =?UTF-8?q?=E7=BB=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/bg-ui/bg-nav-list.vue | 2 +- src/page/main/system/organization/index.vue | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bg-ui/bg-nav-list.vue b/src/bg-ui/bg-nav-list.vue index e487a06..12ddc10 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 885442e..ccacce6 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 { -- 2.26.0