新增站点地图静态页面,项目新增ems router文件、components文件、mixin文件、scss文件和view文件

This commit is contained in:
白菜
2025-06-16 15:54:10 +08:00
parent 598c16da9c
commit b2fdb2d6b8
10 changed files with 436 additions and 1 deletions

19
src/router/ems.js Normal file
View File

@ -0,0 +1,19 @@
import Layout from "@/layout/index.vue";
const ems = [
{
path: '/zddt',
component: Layout,
redirect: 'zddt',
children: [
{
path: '',
component: () => import('@/views/ems/zddt/index'),
name: 'zddt',
meta: { title: '站点地图', icon: 'guide' }
}
]
}
]
export default ems