forked from github/dataease
refactor(视图): 视图时间和数值字段过滤时支持不为空选项 #5291
This commit is contained in:
parent
304c8c70fa
commit
ede70cd134
@ -117,6 +117,13 @@ export default {
|
|||||||
value: 'ge',
|
value: 'ge',
|
||||||
label: this.$t('chart.filter_ge')
|
label: this.$t('chart.filter_ge')
|
||||||
}]
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '',
|
||||||
|
options: [{
|
||||||
|
value: 'not_null',
|
||||||
|
label: this.$t('chart.filter_not_null')
|
||||||
|
}]
|
||||||
}],
|
}],
|
||||||
logic: ''
|
logic: ''
|
||||||
}
|
}
|
||||||
|
@ -194,6 +194,13 @@ export default {
|
|||||||
value: 'ge',
|
value: 'ge',
|
||||||
label: this.$t('chart.filter_ge')
|
label: this.$t('chart.filter_ge')
|
||||||
}]
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '',
|
||||||
|
options: [{
|
||||||
|
value: 'not_null',
|
||||||
|
label: this.$t('chart.filter_not_null')
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
valueOptions: [
|
valueOptions: [
|
||||||
@ -226,6 +233,13 @@ export default {
|
|||||||
value: 'ge',
|
value: 'ge',
|
||||||
label: this.$t('chart.filter_ge')
|
label: this.$t('chart.filter_ge')
|
||||||
}]
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '',
|
||||||
|
options: [{
|
||||||
|
value: 'not_null',
|
||||||
|
label: this.$t('chart.filter_not_null')
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
options: [],
|
options: [],
|
||||||
|
Loading…
Reference in New Issue
Block a user