流程模型中增加仿钉钉设计器入口

This commit is contained in:
jason
2024-03-20 22:25:24 +08:00
parent 07dc725857
commit 0d4b6f6344
3 changed files with 60 additions and 0 deletions

View File

@ -157,6 +157,14 @@
>
设计流程
</el-button>
<el-button
link
type="primary"
@click="handleSimpleDesign(scope.row.id)"
v-hasPermi="['bpm:model:update']"
>
仿钉钉设计流程
</el-button>
<el-button
link
type="primary"
@ -323,6 +331,15 @@ const handleDesign = (row) => {
})
}
const handleSimpleDesign = (row) => {
push({
name: 'SimpleWorkflowDesignEditor',
query: {
modelId: row.id
}
})
}
/** 发布流程 */
const handleDeploy = async (row) => {
try {