fix: [PWT-153] 배너 날짜 노출 시작일로 수정
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user