2024-03-27 09:27:14 +08:00
|
|
|
import request from '@/config/axios'
|
|
|
|
|
|
|
|
|
|
|
|
export const saveBpmSimpleModel = async (data) => {
|
|
|
|
return await request.post({
|
|
|
|
url: '/bpm/simple/save',
|
|
|
|
data: data
|
|
|
|
})
|
2024-03-29 19:56:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const getBpmSimpleModel = async (modelId) => {
|
|
|
|
return await request.get({
|
|
|
|
url: '/bpm/simple/get?modelId=' + modelId
|
|
|
|
})
|
2024-03-27 09:27:14 +08:00
|
|
|
}
|