feat: 【BPM 工作流】完善流程表单模块

This commit is contained in:
ziye
2025-05-14 01:20:11 +08:00
parent 3ac5f784e7
commit 18c4e92418
8 changed files with 678 additions and 20 deletions

View File

@@ -47,6 +47,24 @@ const routes: RouteRecordRaw[] = [
};
},
},
/** 编辑流程表单 */
{
path: '/bpm/manager/form/edit',
name: 'BpmFormEditor',
component: () => import('#/views/bpm/form/editor.vue'),
meta: {
title: '编辑流程表单',
activePath: '/bpm/manager/form',
},
props: (route) => {
return {
id: route.query.id,
type: route.query.type,
copyId: route.query.copyId,
};
},
},
],
},
];