From f2a43a531f600ccb28dc1406f4ec15a5479ee8fa Mon Sep 17 00:00:00 2001 From: yanyan <513352169@qq.com> Date: Tue, 17 Mar 2026 15:41:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=A7=E5=93=81=E5=AE=A1?= =?UTF-8?q?=E6=89=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/workFlow/workFlow.js | 4 + .../modules/srmPart/com_part_Approval.vue | 118 ++++++++---- src/views/modules/srmPart/partInfoList.vue | 170 +++++++++++++++++- 3 files changed, 252 insertions(+), 40 deletions(-) diff --git a/src/api/workFlow/workFlow.js b/src/api/workFlow/workFlow.js index 80501dc..02ed867 100644 --- a/src/api/workFlow/workFlow.js +++ b/src/api/workFlow/workFlow.js @@ -77,3 +77,7 @@ export const getPendingTaskCount = data => createAPI(`/workFlow/task/pendingCoun // 撤回审批 export const withdrawTask = data => createAPI(`/workFlow/task/withdraw`, 'post', data) + + +// 通过业务单号查询流程节点实例列表 +export const getNodeInstanceList = data => createAPI(`/workFlow/instance/getNodeInstanceList`, 'post', data) diff --git a/src/views/modules/srmPart/com_part_Approval.vue b/src/views/modules/srmPart/com_part_Approval.vue index 90a584b..32802c6 100644 --- a/src/views/modules/srmPart/com_part_Approval.vue +++ b/src/views/modules/srmPart/com_part_Approval.vue @@ -1,57 +1,60 @@ - + - - --> + - + style="width: 100%;"> + + + {{ scope.row.departmentName || '-' }} + + + + + + + {{ getNodeStatusText(scope.row.status) }} + + + + + + {{ scope.row.completeTime || '-' }} + + + + + @@ -59,6 +62,9 @@