From df272fd22b7ab822caf61428843eb6380f1c0666 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, 21 Mar 2025 18:07:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=B3=E9=94=AE=E5=AD=97?= =?UTF-8?q?=E7=9A=84=E9=AB=98=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/model-activity/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/model-activity/index.vue b/src/components/model-activity/index.vue index 6dbe59e4..1efe2942 100644 --- a/src/components/model-activity/index.vue +++ b/src/components/model-activity/index.vue @@ -242,7 +242,7 @@ const keyword_style = computed(() => { }) const keyword_img_style = computed(() => { const style = new_style.value.activity_main?.keywords_style || {}; - return `${ padding_computer(style.font_padding) } ${ background_computer(style) }font-weight:${style.font_typeface}; font-size: ${style.font_size}px;color: ${style.font_color};`; + return `${ padding_computer(style.font_padding) } ${ background_computer(style) }font-weight:${style.font_typeface}; font-size: ${style.font_size}px;line-height: 1.5;color: ${style.font_color};`; }) // 内容区域的样式 const content_style = computed(() => padding_computer(new_style.value.activity_main.activity_main_right_content));