From 0d77db2eea348b1b1f3dd65aace302558152e4c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Fri, 22 Nov 2024 18:06:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=80=89=E9=A1=B9=E5=8D=A1?= =?UTF-8?q?=E7=9A=84=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/tabs-view/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/common/tabs-view/index.vue b/src/components/common/tabs-view/index.vue index 296a2150..a772161e 100644 --- a/src/components/common/tabs-view/index.vue +++ b/src/components/common/tabs-view/index.vue @@ -101,7 +101,11 @@ const title_style = (index: number) => { const padding_bottom = computed(() => { let bottom = 0; if (form.value.tabs_theme == '0') { - bottom = 3; + if (new_style.value.tabs_one_theme == '1') { + bottom = 6; + } else { + bottom = 3; + } } else if (form.value.tabs_theme == '3') { bottom = 10; }