mod: 删除无用文件
This commit is contained in:
parent
3fe40ba62d
commit
cd12911d30
|
@ -292,13 +292,21 @@ const adminList = [
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'useCrudSchemas',
|
path: 'useOpenTab',
|
||||||
component: 'views/hooks/useCrudSchemas',
|
component: 'views/hooks/useOpenTab',
|
||||||
name: 'UseCrudSchemas',
|
name: 'UseOpenTab',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'useCrudSchemas'
|
title: 'useOpenTab'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// {
|
||||||
|
// path: 'useCrudSchemas',
|
||||||
|
// component: 'views/hooks/useCrudSchemas',
|
||||||
|
// name: 'UseCrudSchemas',
|
||||||
|
// meta: {
|
||||||
|
// title: 'useCrudSchemas'
|
||||||
|
// }
|
||||||
|
// }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -555,7 +563,8 @@ const testList: string[] = [
|
||||||
'/Components/Sticky',
|
'/Components/Sticky',
|
||||||
'/hooks',
|
'/hooks',
|
||||||
'/hooks/useWatermark',
|
'/hooks/useWatermark',
|
||||||
'/hooks/useCrudSchemas',
|
'/hooks/useOpenTab',
|
||||||
|
// '/hooks/useCrudSchemas',
|
||||||
'/level',
|
'/level',
|
||||||
'/level/menu1',
|
'/level/menu1',
|
||||||
'/level/menu1/menu1-1',
|
'/level/menu1/menu1-1',
|
||||||
|
|
|
@ -333,6 +333,14 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
|
// path: 'useOpenTab',
|
||||||
|
// component: () => import('@/views/hooks/useOpenTab.vue'),
|
||||||
|
// name: 'UseOpenTab',
|
||||||
|
// meta: {
|
||||||
|
// title: 'useOpenTab'
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// {
|
||||||
// path: 'useCrudSchemas',
|
// path: 'useCrudSchemas',
|
||||||
// component: () => import('@/views/hooks/useCrudSchemas.vue'),
|
// component: () => import('@/views/hooks/useCrudSchemas.vue'),
|
||||||
// name: 'UseCrudSchemas',
|
// name: 'UseCrudSchemas',
|
||||||
|
@ -559,6 +567,25 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/dynamic',
|
||||||
|
component: Layout,
|
||||||
|
redirect: '/404',
|
||||||
|
name: 'Dynamic',
|
||||||
|
meta: {
|
||||||
|
hidden: true
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'tab/:id',
|
||||||
|
component: () => import('@/components/Dynamic/src/Dynamic.vue'),
|
||||||
|
name: 'Dynamic',
|
||||||
|
meta: {
|
||||||
|
title: '详情页'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue