fuliqi
2024-11-26 eb7828a7adabe105449b6ef0d0188065b6218151
src/router/index.js
@@ -184,17 +184,31 @@
    component: Layout,
    children: [
      {
        path: '/plan/index',
        component: () => import('@/views/project/plan/index'),
        path: '/projectPlan/index',
        component: () => import('@/views/projectPlan/index'),
        name: 'Index',
        meta: { title: '项目计划' }
      },
      /** 项目计划记录 */
      {
        path: '/plan/planRecord',
        component: () => import('@/views/project/plan/planRecord'),
        path: '/projectPlan/planRecord',
        component: () => import('@/views/projectPlan/planRecord'),
        name: 'PlanRecord',
        meta: { title: '项目计划记录' }
      },
      /** 编辑项目计划项 */
      {
        path: '/projectPlan/planInfo',
        component: () => import('@/views/projectPlan/planInfo'),
        name: 'PlanInfo',
        meta: { title: '编辑项目计划项' }
      },
      /** 查看项目计划项 */
      {
        path: '/projectPlan/planInfoCheck',
        component: () => import('@/views/projectPlan/planInfoCheck'),
        name: 'PlanInfoCheck',
        meta: { title: '查看项目计划项' }
      }
    ]
  },