From ede70cd134433d7054f92148f8469dfac381108e Mon Sep 17 00:00:00 2001 From: junjun Date: Mon, 10 Jul 2023 15:36:46 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E8=A7=86=E5=9B=BE):=20=E8=A7=86?= =?UTF-8?q?=E5=9B=BE=E6=97=B6=E9=97=B4=E5=92=8C=E6=95=B0=E5=80=BC=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E8=BF=87=E6=BB=A4=E6=97=B6=E6=94=AF=E6=8C=81=E4=B8=8D?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA=E9=80=89=E9=A1=B9=20#5291?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chart/components/filter/QuotaFilterEditor.vue | 7 +++++++ .../chart/components/filter/ResultFilterEditor.vue | 14 ++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/frontend/src/views/chart/components/filter/QuotaFilterEditor.vue b/frontend/src/views/chart/components/filter/QuotaFilterEditor.vue index 14b037028b..25f1bd4045 100644 --- a/frontend/src/views/chart/components/filter/QuotaFilterEditor.vue +++ b/frontend/src/views/chart/components/filter/QuotaFilterEditor.vue @@ -117,6 +117,13 @@ export default { value: 'ge', label: this.$t('chart.filter_ge') }] + }, + { + label: '', + options: [{ + value: 'not_null', + label: this.$t('chart.filter_not_null') + }] }], logic: '' } diff --git a/frontend/src/views/chart/components/filter/ResultFilterEditor.vue b/frontend/src/views/chart/components/filter/ResultFilterEditor.vue index f9f3c77fdf..73c5c3b8b7 100644 --- a/frontend/src/views/chart/components/filter/ResultFilterEditor.vue +++ b/frontend/src/views/chart/components/filter/ResultFilterEditor.vue @@ -194,6 +194,13 @@ export default { value: 'ge', label: this.$t('chart.filter_ge') }] + }, + { + label: '', + options: [{ + value: 'not_null', + label: this.$t('chart.filter_not_null') + }] } ], valueOptions: [ @@ -226,6 +233,13 @@ export default { value: 'ge', label: this.$t('chart.filter_ge') }] + }, + { + label: '', + options: [{ + value: 'not_null', + label: this.$t('chart.filter_not_null') + }] } ], options: [],