仿钉钉设计流程-30%: 获取仿钉钉流程模型数据结构

This commit is contained in:
jason
2024-03-29 19:56:45 +08:00
parent 627b822f15
commit 253d707131
6 changed files with 103 additions and 31 deletions

View File

@ -6,4 +6,10 @@ export const saveBpmSimpleModel = async (data) => {
url: '/bpm/simple/save',
data: data
})
}
export const getBpmSimpleModel = async (modelId) => {
return await request.get({
url: '/bpm/simple/get?modelId=' + modelId
})
}