From c9a6f7cbb5209415e626df29c7572cf40fe92b66 Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期一, 06 一月 2025 11:44:50 +0800 Subject: [PATCH] 1、工作流程功能优化,解决流程图模拟功能simulation不生效的bug 2、system menu等页面修改 3、Footer copyright年份修改为动态 --- src/utils/routerHelper.ts | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/utils/routerHelper.ts b/src/utils/routerHelper.ts index e9c8c64..a4b2295 100644 --- a/src/utils/routerHelper.ts +++ b/src/utils/routerHelper.ts @@ -21,7 +21,6 @@ /* Layout */ export const Layout = () => import('@/layout/Layout.vue') - export const getParentLayout = () => { return () => new Promise((resolve) => { @@ -74,7 +73,7 @@ noCache: !route.keepAlive, alwaysShow: route.children && - route.children.length === 1 && + route.children.length > 0 && (route.alwaysShow !== undefined ? route.alwaysShow : true) } as any // 特殊逻辑:如果后端配置的 MenuDO.component 包含 ?,则表示需要传递参数 @@ -89,7 +88,8 @@ // 2. 生成 data(AppRouteRecordRaw) // 路由地址转首字母大写驼峰,作为路由名称,适配keepAlive let data: AppRouteRecordRaw = { - path: route.path.indexOf('?') > -1 ? route.path.split('?')[0] : route.path, + path: + route.path.indexOf('?') > -1 && !isUrl(route.path) ? route.path.split('?')[0] : route.path, // 注意,需要排除 http 这种 url,避免它带 ? 参数被截取掉 name: route.componentName && route.componentName.length > 0 ? route.componentName @@ -120,7 +120,7 @@ data.children = [childrenData] } else { // 目录 - if (route.children) { + if (route.children?.length) { data.component = Layout data.redirect = getRedirect(route.path, route.children) // 外链 -- Gitblit v1.9.3