diff --git a/core/core-frontend/src/custom-component/v-query/Component.vue b/core/core-frontend/src/custom-component/v-query/Component.vue index 03add8e9f6..31e899a47f 100644 --- a/core/core-frontend/src/custom-component/v-query/Component.vue +++ b/core/core-frontend/src/custom-component/v-query/Component.vue @@ -302,6 +302,8 @@ const resetData = () => { ? [...next.defaultMapValue] : next.defaultMapValue } + next.conditionValueF = next.defaultConditionValueF + next.conditionValueS = next.defaultConditionValueS const keyList = Object.entries(next.checkedFieldsMap) .filter(ele => next.checkedFields.includes(ele[0])) .filter(ele => !!ele[1]) @@ -317,6 +319,8 @@ const clearData = () => { if (next.optionValueSource === 1 && next.defaultMapValue?.length) { next.mapValue = next.multiple ? [] : undefined } + next.conditionValueF = '' + next.conditionValueS = '' const keyList = Object.entries(next.checkedFieldsMap) .filter(ele => next.checkedFields.includes(ele[0])) .filter(ele => !!ele[1]) diff --git a/core/core-frontend/src/custom-component/v-query/TextSearch.vue b/core/core-frontend/src/custom-component/v-query/TextSearch.vue index ed2f13fac7..ac3b69fd8d 100644 --- a/core/core-frontend/src/custom-component/v-query/TextSearch.vue +++ b/core/core-frontend/src/custom-component/v-query/TextSearch.vue @@ -1,5 +1,5 @@