fix: [PWT-153] 배너 날짜 노출 시작일로 수정

This commit is contained in:
clkim
2025-12-05 15:44:46 +09:00
parent 52185029dc
commit 3626a7d195
3 changed files with 4 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ const handleLinkClick = (title: string) => {
<img
v-if="props.imgPath"
:src="props.imgPath"
:alt="props.title || props.alt"
:alt="props.alt ?? props.title"
class="card-image"
loading="lazy"
/>

View File

@@ -117,7 +117,7 @@ const onArrowClick = direction => {
<SplideSlide v-for="(item, index) in slideData" :key="index">
<BlocksCardNews
:title="item.title"
:description="globalDateFormat(item.reg_dt, locale)"
:description="globalDateFormat(item.display_start_dt, locale)"
:img-path="formatPathHost(item.img_path)"
:url="item.url"
:link-target="item.link_target"

View File

@@ -11,6 +11,8 @@ export interface OperateGroupItem {
url: string
link_target: string
reg_dt: number
display_start_dt: number
display_end_dt: number
option01: number
option02: number
option03: string