16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
import request from '@/config/axios'
|
|
|
|
|
|
export const updateBpmSimpleModel = async (data) => {
|
|
return await request.post({
|
|
url: '/bpm/model/simple/update',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
export const getBpmSimpleModel = async (modelId) => {
|
|
return await request.get({
|
|
url: '/bpm/model/simple/get?modelId=' + modelId
|
|
})
|
|
}
|