From ebc546b0456fd26837c43a5ebbaf5db92fa826e7 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Wed, 12 Feb 2025 10:38:12 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=9F=A5=E8=AF=A2=E7=BB=84=E4=BB=B6):=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BE=B9=E6=A1=86=E9=A2=9C=E8=89=B2=EF=BC=8C?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E6=90=9C=E7=B4=A2=E7=9A=84=E8=BE=B9=E6=A1=86?= =?UTF-8?q?=E9=A2=9C=E8=89=B2=E6=B2=A1=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core-frontend/src/custom-component/v-query/TextSearch.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 7ae7ff6406..331d3dfec1 100644 --- a/core/core-frontend/src/custom-component/v-query/TextSearch.vue +++ b/core/core-frontend/src/custom-component/v-query/TextSearch.vue @@ -82,7 +82,7 @@ onBeforeMount(() => { setParams() }) const queryConditionWidth = inject('com-width', Function, true) -const customStyle = inject<{ background: string }>('$custom-style-filter') +const customStyle = inject<{ background: string; border: string }>('$custom-style-filter') const isConfirmSearch = inject('is-confirm-search', Function, true) const getCustomWidth = () => { @@ -106,7 +106,7 @@ const handleValueChange = () => { } } const lineWidth = computed(() => { - return { width: getCustomWidth() - 15 + 'px' } + return { width: getCustomWidth() - 15 + 'px', background: customStyle.border } }) const handleKeyEnter = () => {