2967e2d7 by lihua

fix

1 parent f7bb384c
......@@ -134,7 +134,7 @@ const routes: RouteRecordRaw[] = [
],
},
{
path: '/data-catalog/report',
path: '/data-meta/report',
component: Layout,
meta: {
title: '报表查看',
......
......@@ -156,7 +156,7 @@ const useRouteStore = defineStore(
title: m.productName || m.menuName
};
}
r = routes.find((route: any) => route.path === path || route.path === m.path || `/${route.path}` === m.path || (path.includes('/data-catalog/report') && route.path.includes('/data-catalog/report')));
r = routes.find((route: any) => route.path === path || route.path === m.path || `/${route.path}` === m.path || (path.includes('/data-meta/report') && route.path.includes('/data-meta/report')));
if (r && path.includes('budgetDataIndex')) {
r.path = path;
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!