feat:【antd】bpm processInstance/index.vue 的迁移

This commit is contained in:
YunaiV
2025-10-21 13:06:37 +08:00
parent f488d7e414
commit b3b3e632ec
3 changed files with 60 additions and 33 deletions

View File

@@ -15,6 +15,7 @@ export namespace BpmProcessInstanceApi {
export interface Task {
id: number;
name: string;
assigneeUser?: User;
}
export interface User {
@@ -51,6 +52,7 @@ export namespace BpmProcessInstanceApi {
export interface ProcessInstance {
businessKey: string;
category: string;
categoryName?: string;
createTime: string;
endTime: string;
fields: string[];
@@ -64,6 +66,10 @@ export namespace BpmProcessInstanceApi {
startTime?: Date;
startUser?: User;
status: number;
summary?: {
key: string;
value: string;
}[];
tasks?: BpmProcessInstanceApi.Task[];
}