Commit 19caff21 by 18921220793

fix:修复表单联动数据json解析错误问题

parent 192453e4
......@@ -11,7 +11,7 @@ export const encodeConf = (designerRef: object) => {
// 编码表单 Fields
export const encodeFields = (designerRef: object) => {
// @ts-ignore
const rule = designerRef.value.getRule()
const rule = JSON.parse(designerRef.value.getJson())
const fields: string[] = []
rule.forEach((item) => {
fields.push(JSON.stringify(item))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment