Commit d2915ed71d4866d6f958676e05bdfae7f6e3258a

Authored by ww
1 parent aaf4172e

fix: fix cell hide redisplay can not trigger dynamic effect

@@ -7022,6 +7022,7 @@ DataFormatPanel.prototype.addDataFont = function (container) { @@ -7022,6 +7022,7 @@ DataFormatPanel.prototype.addDataFont = function (container) {
7022 echoDataSource, 7022 echoDataSource,
7023 } = generatorDataSourceComponent({ overrideClass: 'dynamic-effect__data-source-comp--override' }) 7023 } = generatorDataSourceComponent({ overrideClass: 'dynamic-effect__data-source-comp--override' })
7024 $(`#${enumActionEl.DATA_SOURCE_COMP_EL}`).append(component) 7024 $(`#${enumActionEl.DATA_SOURCE_COMP_EL}`).append(component)
  7025 + form.render()
7025 const info = getLayerBindInfo('act', type) 7026 const info = getLayerBindInfo('act', type)
7026 const { condition = [] } = info 7027 const { condition = [] } = info
7027 if (info && condition.length) { 7028 if (info && condition.length) {
@@ -13359,6 +13360,9 @@ class HandleDynamicEffect { @@ -13359,6 +13360,9 @@ class HandleDynamicEffect {
13359 }) 13360 })
13360 const temp = this.actNodeMapping.get(node.id) 13361 const temp = this.actNodeMapping.get(node.id)
13361 temp.display = false 13362 temp.display = false
  13363 + } else {
  13364 + const temp = this.actNodeMapping.get(node.id)
  13365 + temp.display = true
13362 } 13366 }
13363 13367
13364 node.setVisible(isShow) 13368 node.setVisible(isShow)