项管首页

This commit is contained in:
wkc
2026-01-30 11:01:13 +08:00
parent ac4e02e8c5
commit e99b05acc2
17 changed files with 2106 additions and 329 deletions

View File

@@ -1,11 +1,10 @@
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
/* Layout */
import Layout from '@/layout'
Vue.use(Router)
/**
* Note: 路由配置项
*
@@ -64,13 +63,13 @@ export const constantRoutes = [
{
path: '',
component: Layout,
redirect: 'index',
redirect: 'dpcProject',
children: [
{
path: 'index',
component: () => import('@/views/index'),
name: 'Index',
meta: { title: '首页', icon: 'dashboard', affix: true }
path: 'dpcProject',
component: () => import('@/views/dpcProject/index'),
name: 'DpcProject',
meta: { title: '初核项目管理', icon: 'dashboard', affix: true }
}
]
},