仿钉钉流程设计器- 后端接口调整

This commit is contained in:
jason
2024-05-27 21:20:18 +08:00
parent 0e7dbbb04d
commit b768632b0c
2 changed files with 6 additions and 6 deletions

View File

@ -1,15 +1,15 @@
import request from '@/config/axios'
export const saveBpmSimpleModel = async (data) => {
export const updateBpmSimpleModel = async (data) => {
return await request.post({
url: '/bpm/simple/save',
url: '/bpm/model/simple/update',
data: data
})
}
export const getBpmSimpleModel = async (modelId) => {
return await request.get({
url: '/bpm/simple/get?modelId=' + modelId
url: '/bpm/model/simple/get?modelId=' + modelId
})
}
}