From 373a63320d9153225ebc02f14531ee2ba7d1d1b5 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Mon, 16 Jun 2025 14:08:27 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=9F=A5=E8=AF=A2=E7=BB=84=E4=BB=B6):=20?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E7=BB=84=E4=BB=B6=E5=BD=93=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E7=9A=84=E5=86=85=E5=AE=B9=E8=BF=87=E9=95=BF?= =?UTF-8?q?=E6=97=B6=EF=BC=8C=E9=80=89=E6=8B=A9=E5=85=A8=E9=80=89=E6=88=96?= =?UTF-8?q?=E8=80=85=E5=A4=9A=E9=80=89=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= =?UTF-8?q?=EF=BC=8C=E4=BC=9A=E9=80=A0=E6=88=90=E6=9F=A5=E8=AF=A2=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E6=A1=86=E6=A0=B7=E5=BC=8F=E9=94=99=E4=BD=8D=E3=80=82?= =?UTF-8?q?=20#15554?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core-frontend/src/custom-component/v-query/Select.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/core-frontend/src/custom-component/v-query/Select.vue b/core/core-frontend/src/custom-component/v-query/Select.vue index a085d004e1..be71a7d72f 100644 --- a/core/core-frontend/src/custom-component/v-query/Select.vue +++ b/core/core-frontend/src/custom-component/v-query/Select.vue @@ -640,11 +640,11 @@ onMounted(() => { }) const tagWidth = computed(() => { - return Math.min(getCustomWidth() / 3, 40) + 'px' + return Math.min((getCustomWidth() - 60) / 2, 50) + 'px' }) const tagTextWidth = computed(() => { - return Math.min(getCustomWidth() / 3, 50) - 25 + 'px' + return Math.min((getCustomWidth() - 60) / 2 - 25, 40) + 'px' }) defineExpose({ @@ -741,9 +741,9 @@ defineExpose({