2967e2d7 by lihua

fix

1 parent f7bb384c
...@@ -134,7 +134,7 @@ const routes: RouteRecordRaw[] = [ ...@@ -134,7 +134,7 @@ const routes: RouteRecordRaw[] = [
134 ], 134 ],
135 }, 135 },
136 { 136 {
137 path: '/data-catalog/report', 137 path: '/data-meta/report',
138 component: Layout, 138 component: Layout,
139 meta: { 139 meta: {
140 title: '报表查看', 140 title: '报表查看',
......
...@@ -156,7 +156,7 @@ const useRouteStore = defineStore( ...@@ -156,7 +156,7 @@ const useRouteStore = defineStore(
156 title: m.productName || m.menuName 156 title: m.productName || m.menuName
157 }; 157 };
158 } 158 }
159 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'))); 159 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')));
160 if (r && path.includes('budgetDataIndex')) { 160 if (r && path.includes('budgetDataIndex')) {
161 r.path = path; 161 r.path = path;
162 } 162 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!