From dece867a5b0d54ca57687f537c25367445a7c490 Mon Sep 17 00:00:00 2001 From: aho Date: Thu, 20 Nov 2025 09:27:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:bpm=20=E6=B5=81=E7=A8=8B=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E6=89=93=E5=BC=80=E7=9B=B4=E6=8E=A5=E4=BF=9D?= =?UTF-8?q?=E5=AD=98js=E4=B8=A2=E5=A4=B1=E9=97=AE=E9=A2=98=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/formCreate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/formCreate.ts b/src/utils/formCreate.ts index f3f005ea9..b20d50cc1 100644 --- a/src/utils/formCreate.ts +++ b/src/utils/formCreate.ts @@ -7,7 +7,7 @@ import formCreate from '@form-create/element-ui' // 编码表单 Conf export const encodeConf = (designerRef: object) => { // @ts-ignore - return JSON.stringify(designerRef.value.getOption()) + return formCreate.toJson(designerRef.value.getOption()) } // 编码表单 Fields -- Gitee