修改 监督退役页面

This commit is contained in:
GGJ
2024-04-17 14:15:19 +08:00
parent 38e88f0ff5
commit b52e913622
8 changed files with 254 additions and 234 deletions

View File

@@ -64,3 +64,9 @@ export const deployModel = async (id: number) => {
export const readXml = async (id: number) => {
return await createAxios({ url: 'process-boot/flowable/definition/readXml?deployId=' + id, method: 'GET' })
}
export const assFormWithDeploy = async (data: any) => {
return createAxios({ url: '/process-boot/flowable/definition/assFormWithDeploy', method: 'GET', params: data })
}
export const deleteDeploy = async (data: any) => {
return createAxios({ url: 'process-boot/flowable/definition/delete', method: 'POST', data })
}