You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
496 B
21 lines
496 B
import request from '@/config/axios'
|
|
|
|
export const getProcessDefinitionBpmnXML = async (id: number) => {
|
|
return await request.get({
|
|
url: '/bpm/process-definition/get-bpmn-xml?id=' + id
|
|
})
|
|
}
|
|
|
|
export const getProcessDefinitionPage = async (params) => {
|
|
return await request.get({
|
|
url: '/bpm/process-definition/page',
|
|
params
|
|
})
|
|
}
|
|
|
|
export const getProcessDefinitionList = async (params) => {
|
|
return await request.get({
|
|
url: '/bpm/process-definition/list',
|
|
params
|
|
})
|
|
}
|
|
|