From 58aba8ba535c527b58fb1c0fc9c9dd889b3fc157 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 11 Mar 2025 10:46:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=9F=A5=E8=AF=A2=E7=BB=84=E4=BB=B6):=20?= =?UTF-8?q?=E6=95=B0=E5=80=BC=E5=8C=BA=E9=97=B4=E6=8C=89=E9=92=AE=E5=BB=BA?= =?UTF-8?q?=E8=AE=AE=E5=8E=BB=E9=99=A4=E6=88=96=E8=B7=9F=E9=9A=8F=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E9=A2=9C=E8=89=B2=E5=8F=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/custom-component/v-query/NumberInput.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/custom-component/v-query/NumberInput.vue b/core/core-frontend/src/custom-component/v-query/NumberInput.vue index 58b79a3a66..656bb0a3f2 100644 --- a/core/core-frontend/src/custom-component/v-query/NumberInput.vue +++ b/core/core-frontend/src/custom-component/v-query/NumberInput.vue @@ -55,7 +55,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 = () => { @@ -78,6 +78,10 @@ const handleValueChange = () => { return } } + +const color = computed(() => { + return customStyle.border +})