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 } },
| );
| }
|
|