From 6136dda76c8859bd0c6466b26c9acd2db060fa9a Mon Sep 17 00:00:00 2001 From: luojie <125330818@qq.com> Date: Wed, 14 Jan 2026 21:58:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86][?= =?UTF-8?q?=E5=A4=8D=E6=A0=B8=E8=B0=83=E8=AF=95]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/business/comps/template/TemplateTable.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/business/comps/template/TemplateTable.vue b/src/views/business/comps/template/TemplateTable.vue index 1ddd89b..b5f6269 100644 --- a/src/views/business/comps/template/TemplateTable.vue +++ b/src/views/business/comps/template/TemplateTable.vue @@ -73,13 +73,13 @@ export default { handler(v) { if (v) { if (v.zdxgjl) { - this.zdxgjl = v.zdxgjl || []; + this.zdxgjl = JSON.parse(v.zdxgjl) || []; } if (v.fhyjjl) { - this.fhyjjl = v.fhyjjl || []; + this.fhyjjl = JSON.parse(v.fhyjjl) || []; } if (v.fieldCheckObj) { - this.fieldCheckObj = v.fieldCheckObj || {}; + this.fieldCheckObj = JSON.parse(v.fieldCheckObj) || {}; } } }