oa初步完成

This commit is contained in:
2024-11-16 20:08:00 +08:00
parent 17ef95ebae
commit 76403c1cf8
35 changed files with 1157 additions and 93 deletions

View File

@@ -147,6 +147,7 @@ export const dynamicRoutes = [
}
]
},
{
path: '/system/dict-data',
component: Layout,
@@ -161,6 +162,21 @@ export const dynamicRoutes = [
}
]
},
{
path: '/oa/warehouse-data',
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index/:warehouseId(\\d+)',
component: () => import('@/views/oa/oaWarehouse/data'),
name: 'Data',
meta: { title: '出库数据', activeMenu: '/oa/oaWarehouse' }
}
]
},
{
path: '/remind',
component: Layout,
@@ -251,6 +267,20 @@ export const dynamicRoutes = [
}
]
},
{
path: '/project/closure',
component: Layout,
hidden: true,
permissions: ['workflow:process:query'],
children: [
{
path: 'detail/:projectId(\\d+)',
component: () => import('@/views/oa/closure/index'),
name: 'closure',
meta: { title: '项目结项', activeMenu: '/project/project' }
}
]
},
]
// 防止连续点击多次路由报错