mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
feat: 增加流程作废功能并优化按钮组件
This commit is contained in:
8
src/typings/api/workflow.api.d.ts
vendored
8
src/typings/api/workflow.api.d.ts
vendored
@ -156,5 +156,13 @@ declare namespace Api {
|
||||
>;
|
||||
/** 流程实例列表 */
|
||||
type ProcessInstanceList = Common.PaginatingQueryRecord<ProcessInstance>;
|
||||
|
||||
/** 流程作废操作参数 */
|
||||
type FlowInvalidOperateParams = CommonType.RecordNullable<{
|
||||
/** 主键 */
|
||||
id: CommonType.IdType;
|
||||
/** 作废原因 */
|
||||
comment: string;
|
||||
}>;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user