From bc51e033eea60feb4ffc0a3c65c99c83c61e4459 Mon Sep 17 00:00:00 2001 From: liushilong <2224574157@qq.com> Date: Sun, 31 Mar 2024 12:26:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=AB=98=E7=BA=A7=E7=AD=9B=E9=80=89?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=9D=A1=E4=BB=B6=E4=BF=9D=E5=AD=98=E6=8A=A5?= =?UTF-8?q?=E9=94=99=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/final/comp/NewFilterModal.vue | 4 ++-- src/views/home/aside/comp/modals/NewFilterModal.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/final/comp/NewFilterModal.vue b/src/views/final/comp/NewFilterModal.vue index 3b9a219..0bf6c22 100644 --- a/src/views/final/comp/NewFilterModal.vue +++ b/src/views/final/comp/NewFilterModal.vue @@ -84,10 +84,10 @@ const formRef = ref(null) const formValue = reactive({ name: null, - logic: null, + logic: 'where', conditions: [{ type: null, - operator: null, + operator: 'eq', result: null, }], }) diff --git a/src/views/home/aside/comp/modals/NewFilterModal.vue b/src/views/home/aside/comp/modals/NewFilterModal.vue index 1c4dda4..4793d0d 100644 --- a/src/views/home/aside/comp/modals/NewFilterModal.vue +++ b/src/views/home/aside/comp/modals/NewFilterModal.vue @@ -84,10 +84,10 @@ const formRef = ref(null) const formValue = reactive({ name: null, - logic: null, + logic: 'where', conditions: [{ type: null, - operator: null, + operator: 'eq', result: null, }], })