fix: 日期范围参数化

This commit is contained in:
dataeaseShu 2023-12-21 10:41:48 +08:00
parent 0a2d333c5e
commit 85728287f4

View File

@ -111,6 +111,10 @@ const parametersFilter = computed(() => {
if (curComponent.value.displayType === '2') {
return [2, 3].includes(ele.deType)
}
if (curComponent.value.displayType === '7') {
return [1, 7].includes(ele.deType)
}
return ele.deType === +curComponent.value.displayType
})
})