update 调整流程定义配置逻辑

This commit is contained in:
gssong
2024-04-06 21:06:59 +08:00
parent 9f73ea2d32
commit b4b0eba228
7 changed files with 183 additions and 63 deletions

View File

@ -36,3 +36,15 @@ export const deldefinitionConfig = (id: string | number | Array<string | number>
method: 'delete'
});
};
/**
* 查询流程定义配置排除当前查询的流程定义
* @param tableName
* @param tableName
*/
export const getByTableNameNotDefId = (tableName: string,definitionId: string ) => {
return request({
url: `/workflow/definitionConfig/getByTableNameNotDefId/${tableName}/${definitionId}`,
method: 'get'
});
};