【代码优化】工作流:去除 DELEGATE 委托中的状态,适合通过 DELEGATE STATE 读取

This commit is contained in:
YunaiV
2024-11-02 14:12:05 +08:00
parent 2df0aa20ff
commit fec7af453f
2 changed files with 1 additions and 12 deletions

View File

@ -35,20 +35,12 @@ export enum TaskStatusEnum {
* 已退回
*/
RETURN = 5,
/**
* 委派中
*/
DELEGATE = 6,
/**
* 审批通过中
*/
APPROVING = 7
}
export type TaskVO = {
id: number
}
export const getTaskTodoPage = async (params: any) => {
return await request.get({ url: '/bpm/task/todo-page', params })
}