diff --git a/src/router/index.ts b/src/router/index.ts index a12a149..0b240bb 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -116,6 +116,19 @@ const routes: RouteRecordRaw[] = [ component: () => import('@/views/org/post/index.vue'), meta: { title: '岗位管理', icon: 'IdCardOutline' } }, + // 项目管理 + { + path: 'biz/orderProject', + name: 'OrderProject', + component: () => import('@/views/biz/orderProject/index.vue'), + meta: { title: '项目管理', icon: 'PersonOutline' } + }, + { + path: 'biz/orderProject/gantt', + name: 'OrderProjectGantt', + component: () => import('@/views/biz/orderProject/components/GanttSchedule.vue'), + meta: { title: '甘特图排产', icon: 'CalendarOutline', activeMenu: '/biz/orderProject' } + }, //运营管理 { path: 'biz/orderItem',