1. 新增流程定义的列表 API

2. 新增流程创建的界面,暂未实现完全
This commit is contained in:
YunaiV
2022-01-08 23:11:09 +08:00
parent 2630ad8eaa
commit 749cb5d762
14 changed files with 250 additions and 104 deletions

View File

@ -188,6 +188,18 @@ export const constantRoutes = [
meta: { title: '流程定义' }
}
]
}, {
path: '/bpm',
component: Layout,
hidden: true,
children: [
{
path: 'process-instance/create',
component: (resolve) => require(['@/views/bpm/processInstance/create'], resolve),
name: '发起流程',
meta: { title: '发起流程' }
}
]
},
]