From c98a14e2ac55ec81f13f31138fa224525f1020f6 Mon Sep 17 00:00:00 2001 From: Myles Date: Thu, 10 Apr 2025 15:41:30 +0800 Subject: [PATCH] =?UTF-8?q?if=E6=B7=BB=E5=8A=A0=E6=8B=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workflow/processDefinition/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/workflow/processDefinition/index.vue b/src/views/workflow/processDefinition/index.vue index b64cd96..c3fe1c8 100644 --- a/src/views/workflow/processDefinition/index.vue +++ b/src/views/workflow/processDefinition/index.vue @@ -466,8 +466,9 @@ const reset = () => { */ const handleAdd = async () => { reset(); - if (queryParams.value.category != '') + if (queryParams.value.category != '') { form.value.category = `${queryParams.value.category}` + } modelDialog.visible = true; modelDialog.title = '新增流程'; };