2025-06-16 15:54:10 +08:00
|
|
|
import Layout from "@/layout/index.vue";
|
|
|
|
|
|
|
|
const ems = [
|
|
|
|
{
|
2025-06-16 16:20:48 +08:00
|
|
|
path: '',
|
2025-06-16 15:54:10 +08:00
|
|
|
component: Layout,
|
2025-06-16 16:20:48 +08:00
|
|
|
redirect: 'noRedirect',
|
2025-06-16 15:54:10 +08:00
|
|
|
children: [
|
|
|
|
{
|
2025-06-16 16:20:48 +08:00
|
|
|
path: 'zddt',
|
2025-06-16 15:54:10 +08:00
|
|
|
component: () => import('@/views/ems/zddt/index'),
|
|
|
|
name: 'zddt',
|
|
|
|
meta: { title: '站点地图', icon: 'guide' }
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
export default ems
|