add -- 添加“新建流程”页面,发起流程操作从“我的流程”页面分离。

This commit is contained in:
hewenqiang
2022-03-25 20:18:00 +08:00
parent 7005f04314
commit 581a6d8f02
11 changed files with 570 additions and 1 deletions

View File

@@ -87,11 +87,30 @@ export const constantRoutes = [
}
]
},
{
path: '/process',
component: Layout,
hidden: true,
children: [
{
path: 'start',
component: () => import('@/views/workflow/process/start'),
name: 'StartProcess',
meta: { title: '发起流程', icon: '' }
}
]
},
{
path: '/task',
component: Layout,
hidden: true,
children: [
{
path: 'process/index',
component: () => import('@/views/workflow/task/process/index'),
name: 'Record',
meta: { title: '我的流程', icon: '' }
},
{
path: 'record/index',
component: () => import('@/views/workflow/task/record/index'),