Merge remote-tracking branch 'yudao/dev' into dev

This commit is contained in:
jason
2025-05-16 14:42:24 +08:00
325 changed files with 21405 additions and 1454 deletions

View File

@@ -46,6 +46,22 @@ 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,
};
},
},
{
path: 'manager/model/create',
component: () => import('#/views/bpm/model/form/index.vue'),