Skip to content

Commit

Permalink
fix: [Bug]: 新版字段设计器中,设置字段显示公式后,设计器中字段就消失了,前台显示正常 #7096
Browse files Browse the repository at this point in the history
  • Loading branch information
baozhoutao committed Jan 13, 2025
1 parent d890654 commit 7d3e0e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ module.exports = {
body: _.map(items, (field)=>{
return {
type: `sfield-${_.camelCase(field.type).toLowerCase()}`,
config: Object.assign({amis: {name: field.name}}, field)
config: Object.assign({amis: {name: field.name}}, field),
visibleOn: field.visible_on
}
})
}
Expand Down

0 comments on commit 7d3e0e1

Please sign in to comment.