fix
Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -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 | } | ... | ... |
-
Please register or sign in to post a comment