add -- 添加“新建流程”页面,发起流程操作从“我的流程”页面分离。

This commit is contained in:
hewenqiang
2022-03-25 20:18:00 +08:00
parent 7005f04314
commit 581a6d8f02
11 changed files with 570 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import request from '@/utils/request'
// 查询流程部署关联表单信息
export function getFormByDeployId(deployId) {
return request({
url: '/workflow/deploy/form/' + deployId,
method: 'get',
})
}