From dd0deeff0c261c7f9d64a7ef866671085898d77f Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Mon, 7 Apr 2025 15:35:52 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=9F=A5=E8=AF=A2=E7=BB=84=E4=BB=B6):=20?= =?UTF-8?q?=E6=8B=BC=E5=86=99=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v-query/ConditionDefaultConfiguration.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue b/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue index 693490f499..e27a7a24dd 100644 --- a/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue +++ b/core/core-frontend/src/custom-component/v-query/ConditionDefaultConfiguration.vue @@ -57,14 +57,14 @@ const props = defineProps({ const showFlag = computed(() => props.showPosition === 'main') const { curComponent } = toRefs(props) -const loadingDeault = ref(true) +const loadingDefault = ref(true) watch( () => curComponent.value.id, val => { if (!val) return - loadingDeault.value = false + loadingDefault.value = false nextTick(() => { - loadingDeault.value = true + loadingDefault.value = true }) }, { immediate: true } @@ -657,7 +657,7 @@ defineExpose({