feat: [bpm][ele] 流程/任务详情迁移

This commit is contained in:
jason
2025-11-26 22:46:38 +08:00
parent 5b3f1b7ea0
commit ac305676d8
12 changed files with 3184 additions and 19 deletions

View File

@@ -27,25 +27,25 @@ const routes: RouteRecordRaw[] = [
},
],
},
// {
// path: 'process-instance/detail',
// component: () => import('#/views/bpm/processInstance/detail/index.vue'),
// name: 'BpmProcessInstanceDetail',
// meta: {
// title: '流程详情',
// activePath: '/bpm/task/my',
// icon: 'ant-design:history-outlined',
// keepAlive: false,
// hideInMenu: true,
// },
// props: (route) => {
// return {
// id: route.query.id,
// taskId: route.query.taskId,
// activityId: route.query.activityId,
// };
// },
// },
{
path: 'process-instance/detail',
component: () => import('#/views/bpm/processInstance/detail/index.vue'),
name: 'BpmProcessInstanceDetail',
meta: {
title: '流程详情',
activePath: '/bpm/task/my',
icon: 'ant-design:history-outlined',
keepAlive: false,
hideInMenu: true,
},
props: (route) => {
return {
id: route.query.id,
taskId: route.query.taskId,
activityId: route.query.activityId,
};
},
},
{
path: '/bpm/manager/form/edit',
name: 'BpmFormEditor',