修改页面显示

v1.2.0
于肖磊 2025-02-14 16:50:06 +08:00
parent b44374e788
commit cc131d0277
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ const tabs_theme = computed(() => {
});
const item_style = computed(() => {
return (index: number, is_sliding_fixed: string) => {
return `padding-left: ${ index == 0 ? '0' : new_style.value.tabs_spacing / 2}px;padding-right:${ index - 1 == form.value.tabs_list.length ? '0' : new_style.value.tabs_spacing / 2 }px;${ is_sliding_fixed == '1' ? props.tabsSlidingFixedBg : ''}`
return `padding-left: ${ index == 0 ? '0' : new_style.value.tabs_spacing / 2}px;padding-right:${ index + 1 == form.value.tabs_list.length ? '0' : new_style.value.tabs_spacing / 2 }px;${ is_sliding_fixed == '1' ? props.tabsSlidingFixedBg : ''}`
}
});
const tabs_bottom_line_theme = computed(() => {