bpm:流程分配任务的列表 50%

This commit is contained in:
YunaiV
2023-01-19 17:11:31 +08:00
parent 62a86fdff1
commit fabdccd981
4 changed files with 378 additions and 2 deletions

View File

@ -177,6 +177,39 @@ const remainingRouter: AppRouteRecordRaw[] = [
title: '500',
noTagsView: true
}
},
{
path: '/bpm',
component: Layout,
name: 'bpm',
meta: {
hidden: true
},
children: [
{
path: '/manager/definition',
component: () => import('@/views/bpm/definition/index.vue'),
name: 'BpmProcessDefinitionList',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '流程定义',
activeMenu: 'bpm/definition/index'
}
},
{
path: '/manager/task-assign-rule',
component: () => import('@/views/bpm/taskAssignRule/index.vue'),
name: 'BpmTaskAssignRuleList',
meta: {
noCache: true,
hidden: true,
canTo: true,
title: '任务分配规则'
}
}
]
}
]