zhangwencui
昨天 a2002ba0e8aa2a0e4eee61b5205748d8f6e454fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { requestClient } from '#/api/request';
 
export namespace MesPdWorkflowApi {
  /** 设计流程节点 */
  export interface WorkflowNode {
    id?: number;
    projectId?: number;
    nodeName?: string;
    nodeType?: string;
    operatorName?: string;
    status?: number;
    operateTime?: number;
    remark?: string;
  }
}
 
export function getPdWorkflowList(projectId: number) {
  return requestClient.get<MesPdWorkflowApi.WorkflowNode[]>(
    '/mes/pd/workflow/list',
    { params: { projectId } },
  );
}