fix. [SWV-865] 영상재생 버튼 개선

Made-with: Cursor
This commit is contained in:
clkim
2026-02-27 15:14:16 +09:00
parent a21c4127f6
commit 9208aae87f
13 changed files with 81 additions and 32 deletions

View File

@@ -22,6 +22,10 @@ const descriptionData = computed(() =>
const videoPlayData = computed(() =>
getComponentGroup(props.components, 'videoPlay')
)
// [TODO] api 수정 후 사용
// const videoPlayData = computed(() =>
// getComponentGroup(props.components, 'videoPlayImg')
// )
const buttonListData = computed(() =>
getComponentGroupAry(props.components, 'buttonList')
)
@@ -32,7 +36,7 @@ const buttonListData = computed(() =>
<WidgetsBackground
v-if="backgroundData"
:resources-data="backgroundData"
gradient="h-[342px] bg-[linear-gradient(180deg,rgba(16,13,15,0)_0%,#100D0F_90%)] md:h-[720px]"
gradient="h-[208px] bg-[linear-gradient(180deg,rgba(16,13,15,0)_0%,#100D0F_90%)] md:h-[350px]"
/>
<div class="content-standard gap-4 md:gap-5">
<WidgetsMainTitle
@@ -45,7 +49,11 @@ const buttonListData = computed(() =>
:resources-data="descriptionData"
class="w-full max-w-[355px] md:max-w-[944px]"
/>
<WidgetsVideoPlay v-if="videoPlayData" :resources-data="videoPlayData" />
<WidgetsVideoPlay
v-if="videoPlayData"
category="image"
:resources-data="videoPlayData"
/>
<WidgetsButtonList
v-if="buttonListData"
:resources-data="buttonListData"