forked from github/dataease
fix: 修复外部参数数字区间过滤组件数值匹配不正确问题
This commit is contained in:
parent
dafba5d930
commit
34ea49b15a
@ -509,7 +509,11 @@ const data = {
|
||||
currentFilters.push(condition)
|
||||
}
|
||||
if (element.type === 'custom' && element.id === targetViewId) { // 过滤组件处理
|
||||
element.options.value = paramValueStr
|
||||
if (element.component === 'de-number-range') {
|
||||
element.options.value = paramValue
|
||||
} else {
|
||||
element.options.value = paramValueStr
|
||||
}
|
||||
}
|
||||
})
|
||||
if (element.type === 'view') {
|
||||
|
Loading…
Reference in New Issue
Block a user