From 92b9c213d5f93d7dcfebda17535c233a6ba96138 Mon Sep 17 00:00:00 2001 From: AN <1983933789@qq.com> Date: Mon, 26 May 2025 22:19:39 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B5=81=E7=A8=8B=E5=AE=9E=E4=BE=8B?= =?UTF-8?q?=EF=BC=8C=E6=9F=A5=E7=9C=8B=E5=8F=98=E9=87=8F=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workflow/category/index.vue | 2 +- src/views/workflow/process-instance/index.vue | 27 ++++++++++--- .../process-instance-variable-drawer.vue | 40 +++++++++++++++++++ 3 files changed, 63 insertions(+), 6 deletions(-) create mode 100644 src/views/workflow/process-instance/modules/process-instance-variable-drawer.vue diff --git a/src/views/workflow/category/index.vue b/src/views/workflow/category/index.vue index ec91c56f..49b1a0f5 100644 --- a/src/views/workflow/category/index.vue +++ b/src/views/workflow/category/index.vue @@ -138,7 +138,7 @@ async function edit(row: TableDataWithIndex) { handleEdit(row); } -function addInRow(row: TableDataWithIndex) { +async function addInRow(row: TableDataWithIndex) { editingData.value = jsonClone(row); handleAdd(); } diff --git a/src/views/workflow/process-instance/index.vue b/src/views/workflow/process-instance/index.vue index 7b5de630..1a8d0c3e 100644 --- a/src/views/workflow/process-instance/index.vue +++ b/src/views/workflow/process-instance/index.vue @@ -1,6 +1,7 @@