From 83fe53a6d902de561bf00a19a3c126d570d69a04 Mon Sep 17 00:00:00 2001 From: 17630416519 Date: Thu, 6 Nov 2025 14:12:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=B7=A5=E6=AD=A5=E6=A0=91=E5=BD=A2?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/processmodeloperationstep.js | 9 + src/views/processSteps/components/tree.vue | 55 ++ src/views/processSteps/index.vue | 651 ++++++++++---------- 3 files changed, 390 insertions(+), 325 deletions(-) create mode 100644 src/views/processSteps/components/tree.vue diff --git a/src/api/system/processmodeloperationstep.js b/src/api/system/processmodeloperationstep.js index 16f22ef..e3398f9 100644 --- a/src/api/system/processmodeloperationstep.js +++ b/src/api/system/processmodeloperationstep.js @@ -89,4 +89,13 @@ export function delProcessmodelOperationStepDetail(id) { url: 'business/ProcessmodelOperationStep/deleteAccount' + id, method: 'delete' }) +} + +//左侧树形结构 +export function listProcessmodelOperationStepTree(query) { + return request({ + url: 'business/ProcessmodelOperationStep/modelProcessList', + method: 'get', + params: query, + }) } \ No newline at end of file diff --git a/src/views/processSteps/components/tree.vue b/src/views/processSteps/components/tree.vue new file mode 100644 index 0000000..af90c09 --- /dev/null +++ b/src/views/processSteps/components/tree.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file diff --git a/src/views/processSteps/index.vue b/src/views/processSteps/index.vue index 7fd233d..78d3dcc 100644 --- a/src/views/processSteps/index.vue +++ b/src/views/processSteps/index.vue @@ -1,105 +1,99 @@