联调 退役管理
This commit is contained in:
@@ -50,7 +50,7 @@ export const updateModelState = async (id: number, state: number) => {
|
||||
return await createAxios({ url: '/process-boot/bpm/model/update-state', method: 'put', data: data })
|
||||
}
|
||||
|
||||
export const save = async data => {
|
||||
export const save = async (data: any) => {
|
||||
return await createAxios({ url: '/process-boot/flowable/definition/save', method: 'POST', data: data })
|
||||
}
|
||||
|
||||
@@ -70,3 +70,9 @@ export const assFormWithDeploy = async (data: any) => {
|
||||
export const deleteDeploy = async (data: any) => {
|
||||
return createAxios({ url: 'process-boot/flowable/definition/delete', method: 'POST', data })
|
||||
}
|
||||
export const flowRecord = async (data: any) => {
|
||||
return createAxios({ url: '/process-boot/flowable/task/flowRecord', method: 'GET', params: data })
|
||||
}
|
||||
export const flowXmlAndNode = async (data: any) => {
|
||||
return createAxios({ url: '/process-boot/flowable/task/flowXmlAndNode', method: 'GET', params: data })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user