feat: 流程模型新增: 基本信息

This commit is contained in:
jason
2025-05-16 14:05:52 +08:00
parent a7dcebc82a
commit c5e844460e
5 changed files with 945 additions and 6 deletions

View File

@@ -27,7 +27,6 @@ const routes: RouteRecordRaw[] = [
},
],
},
{
path: 'process-instance/detail',
component: () => import('#/views/bpm/processInstance/detail/index.vue'),
@@ -47,6 +46,18 @@ const routes: RouteRecordRaw[] = [
};
},
},
{
path: 'manager/model/create',
component: () => import('#/views/bpm/model/form/index.vue'),
name: 'BpmModelCreate',
meta: {
title: '创建流程',
activePath: '/bpm/manager/model',
icon: 'carbon:flow-connection',
hideInMenu: true,
keepAlive: true,
},
},
],
},
];