From 3a70bf820d0d113b92cb0cce4635bfc1c07d8f25 Mon Sep 17 00:00:00 2001 From: lagos <627844378@qq.com> Date: Mon, 19 May 2025 10:13:01 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/process/index.ts | 15 +++ src/components/PageLayout/PageLayout.vue | 1 - src/pages/process/taskHandle.vue | 132 ++++++++++++++++++++--- 3 files changed, 134 insertions(+), 14 deletions(-) diff --git a/src/api/process/index.ts b/src/api/process/index.ts index 724bcfa..f3f67c3 100644 --- a/src/api/process/index.ts +++ b/src/api/process/index.ts @@ -51,3 +51,18 @@ export function getHisProcessNodeInfo(config : Object) { // 获取历史节点 }) } +export function getNodePositionInfo(config : Object) { + return http({ + url: '/act/task/getNodePositionInfo', + method: 'GET', + data: config + }) +} + +export function getHisInfo(config : Object) { + return http({ + url: '/act/task/processHistoryList', + method: 'GET', + data: config + }) +} diff --git a/src/components/PageLayout/PageLayout.vue b/src/components/PageLayout/PageLayout.vue index ab20453..720f028 100644 --- a/src/components/PageLayout/PageLayout.vue +++ b/src/components/PageLayout/PageLayout.vue @@ -176,7 +176,6 @@ .pageContent { flex: 1; - overflow: hidden; display: flex; flex-direction: column; background-color: #f1f1f1; diff --git a/src/pages/process/taskHandle.vue b/src/pages/process/taskHandle.vue index 6d8051c..db05e3b 100644 --- a/src/pages/process/taskHandle.vue +++ b/src/pages/process/taskHandle.vue @@ -9,14 +9,38 @@