From a6d84c59c9b29beca8701f133b9e4f36ea49e287 Mon Sep 17 00:00:00 2001 From: thinkgem Date: Fri, 1 Dec 2023 10:40:54 +0800 Subject: [PATCH] =?UTF-8?q?vue=E5=85=BC=E5=AE=B9=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/templates/modules/gen/crud/vueForm.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml b/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml index 95245f33..347170f3 100644 --- a/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml +++ b/modules/core/src/main/resources/templates/modules/gen/crud/vueForm.xml @@ -623,7 +623,7 @@ for (c in table.columnList){ try { const data = await validate(); <% if(toBoolean(table.optionMap['isBpmForm'])){ %> - data.bpm = record.value.bpm; // 流程信息 + data.bpm = Object.assign(data.bpm || {}, record.value.bpm); // 流程信息 data.status = record.value.status; // 提交状态 loadingRef.value = true; <% } %>