refactor(数据大屏、仪表板): 复用不展示当前仪表板或者大屏 #15917

This commit is contained in:
wangjiahao
2025-05-08 17:23:16 +08:00
committed by 王嘉豪
parent 44dd328e62
commit 52b6cd0da3

View File

@@ -254,6 +254,9 @@ const nodeCollapse = data => {
}
const filterNode = (value: string, data: BusiTreeNode) => {
if (showPosition.value === 'multiplexing' && data.id === dvInfo.value?.id) {
return false
}
if (!value) return true
return data.name?.toLocaleLowerCase().includes(value.toLocaleLowerCase())
}