From d95f358d1b42e00e1407170c584d8a4311d281ce Mon Sep 17 00:00:00 2001 From: may <1742057357@qq.com> Date: Fri, 25 Jul 2025 23:20:03 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E8=B0=83=E6=95=B4=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workflow/processInstance/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/workflow/processInstance/index.vue b/src/views/workflow/processInstance/index.vue index 95df069..65a64c4 100644 --- a/src/views/workflow/processInstance/index.vue +++ b/src/views/workflow/processInstance/index.vue @@ -455,8 +455,8 @@ const handleVariable = async (formEl: FormInstance | undefined) => { await proxy?.$modal.confirm('是否确认提交?'); await updateVariable(form.value); proxy?.$modal.msgSuccess('操作成功'); - variableVisible.value = false; - await handleQuery(); + const data = await instanceVariable(instanceId.value); + variables.value = data.data.variable; } }); };