diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index ec61e971..309a8e49 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -266,6 +266,18 @@ const remainingRouter: AppRouteRecordRaw[] = [ activeMenu: '/bpm/manager/model' } }, + { + path: '/manager/simple/workflow/model/edit', + component: () => import('@/views/bpm/simpleWorkflow/index.vue'), + name: 'SimpleWorkflowDesignEditor', + meta: { + noCache: true, + hidden: true, + canTo: true, + title: '仿钉钉设计流程', + activeMenu: '/bpm/manager/model' + } + }, { path: '/manager/definition', component: () => import('@/views/bpm/definition/index.vue'), diff --git a/src/views/bpm/model/index.vue b/src/views/bpm/model/index.vue index 9b0eec5e..47d24ea9 100644 --- a/src/views/bpm/model/index.vue +++ b/src/views/bpm/model/index.vue @@ -157,6 +157,14 @@ > 设计流程 + + 仿钉钉设计流程 + { }) } +const handleSimpleDesign = (row) => { + push({ + name: 'SimpleWorkflowDesignEditor', + query: { + modelId: row.id + } + }) +} + /** 发布流程 */ const handleDeploy = async (row) => { try { diff --git a/src/views/bpm/simpleWorkflow/index.vue b/src/views/bpm/simpleWorkflow/index.vue new file mode 100644 index 00000000..7873da7f --- /dev/null +++ b/src/views/bpm/simpleWorkflow/index.vue @@ -0,0 +1,31 @@ + + + \ No newline at end of file