feat: 增加流程作废功能并优化按钮组件

This commit is contained in:
AN
2025-05-25 09:10:49 +08:00
parent f9d57f1b71
commit 350de08f8f
4 changed files with 84 additions and 111 deletions

View File

@ -156,5 +156,13 @@ declare namespace Api {
>;
/** 流程实例列表 */
type ProcessInstanceList = Common.PaginatingQueryRecord<ProcessInstance>;
/** 流程作废操作参数 */
type FlowInvalidOperateParams = CommonType.RecordNullable<{
/** 主键 */
id: CommonType.IdType;
/** 作废原因 */
comment: string;
}>;
}
}