|
@@ -47,9 +47,6 @@ const state = reactive<ParentViewState>({
|
|
|
const menuLeftList = computed(() => {
|
|
|
const parentName = route.path.split('/')[1];
|
|
|
const parentRoute = routeStores.routesList.filter((item: RouteItem) => {
|
|
|
- if(route.path.includes("/admin/log")) {
|
|
|
- return item.path.includes("/system")
|
|
|
- }
|
|
|
return item.path.includes(parentName)
|
|
|
});
|
|
|
return parentRoute[0].children || [];
|