feat(网页端): 流转树在库任务显示『谁转入在库』

- TaskFlowView 在库/入库任务节点显示『📥 转入在库: 创建人中文名』
- TaskResponse 类型补 created_by 字段
This commit is contained in:
2026-08-31 17:20:47 +08:00
parent 0dea116faa
commit 6eb81953f5
2 changed files with 16 additions and 3 deletions

View File

@ -40,6 +40,8 @@ export interface TaskSummary {
export interface TaskResponse extends TaskSummary {
child_tasks: TaskResponse[];
records: TaskRecordResponse[];
/** 🔧 任务创建人(追溯谁转交/发起该工序),如"谁转入在库" */
created_by?: string | null;
}
export interface TaskRecordResponse {