Commit a47e536b authored by 田翔's avatar 田翔

fix: BUG修复

parent f87b56b0
{ {
"name": "panda-xform", "name": "panda-xform",
"version": "5.9.27", "version": "5.9.28",
"description": "5.9.27 代码优化", "description": "5.9.28 BUG修复",
"keywords": [ "keywords": [
"panda-xform" "panda-xform"
], ],
......
...@@ -59,10 +59,10 @@ const getWidgetInfo = (json, widgets) => { ...@@ -59,10 +59,10 @@ const getWidgetInfo = (json, widgets) => {
for (let s in child) { for (let s in child) {
if (widgets.includes(child[s].widget)) { if (widgets.includes(child[s].widget)) {
AutoCalculate.push({ AutoCalculate.push({
gorupName: v,
fieldName: s,
...child[s], ...child[s],
targetPath: `${v}.${s}`, targetPath: `${v}.${s}`,
gorupName: v,
fieldName: s,
}) })
} }
} }
...@@ -83,10 +83,10 @@ const getHiddenWidget = (json) => { ...@@ -83,10 +83,10 @@ const getHiddenWidget = (json) => {
for (let s in child) { for (let s in child) {
if (Array.isArray(child[s].hiddenRules) && child[s].hiddenRules.length) { if (Array.isArray(child[s].hiddenRules) && child[s].hiddenRules.length) {
HiddenWidget.push({ HiddenWidget.push({
gorupName: v,
fieldName: s,
...child[s], ...child[s],
targetPath: `${v}.${s}`, targetPath: `${v}.${s}`,
gorupName: v,
fieldName: s,
}) })
} }
} }
......
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 to comment