From 67d637cca9ffe6cf6f6799a49c08ac2a7f32d0e4 Mon Sep 17 00:00:00 2001 From: xieyonghong <18010623010@163.com> Date: Thu, 2 Feb 2023 10:42:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8B=93=E5=B1=95?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E6=97=A0=E6=B3=95=E8=AE=BF=E9=97=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/menu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/menu.ts b/src/utils/menu.ts index c9f1c00d..516be745 100644 --- a/src/utils/menu.ts +++ b/src/utils/menu.ts @@ -162,7 +162,7 @@ const findChildrenRoute = (code: string, url: string, routes: any[] = []): MenuI const extraRoutes = extraRouteObj[code].children.map((route: MenuItem) => { return { url: `${url}/${route.code}`, - code: route.code, + code: `${code}/${route.code}`, name: route.name, isShow: false }