mirror of
https://github.com/dataease/dataease.git
synced 2026-06-17 21:08:31 +08:00
refactor(数据大屏、仪表板): 空值不参与跳转 (#17178)
This commit is contained in:
@@ -1243,7 +1243,7 @@ export const dvMainStore = defineStore('dataVisualization', {
|
||||
const targetViewId = targetInfoArray[0] // 目标图表
|
||||
// DE_EMPTY 为清空条件标志
|
||||
if (element.component === 'UserView' && element.id === targetViewId) {
|
||||
if ('DE_EMPTY' !== paramValueStr) {
|
||||
if ('DE_EMPTY' !== paramValueStr && paramValueStr !== null && paramValueStr !== '' ) {
|
||||
// 如果目标图表 和 当前循环组件id相等 则进行条件增减
|
||||
const targetFieldId = targetInfoArray[1] // 目标图表列ID
|
||||
const condition = {
|
||||
|
||||
Reference in New Issue
Block a user