[카테고리 스팟 관련 추가] spotlightid관련 추가건.

This commit is contained in:
junghoon86.park
2024-03-29 14:10:09 +09:00
parent a1a9c82869
commit 473ad22b7a
4 changed files with 6 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ export default function ItemContents() {
imageSource={imgUrl}
priceInfo={priceInfo}
productName={prdtNm}
productId={prdtId}
onClick={handleItemClick}
offerInfo={offerInfo}
/>

View File

@@ -60,6 +60,7 @@ export default function ShowContents() {
topShowInfo.showUrl
);
}}
productId={"category-topshow"}
>
<img src={topShowInfo.thumbnailUrl} alt={topShowInfo.showNm} />
</SpottableVideoContainer>

View File

@@ -75,6 +75,7 @@ export default function ShowLists() {
onClick={() => {
_onClick(patnrId, showId, lgCatCd, showUrl);
}}
productId={showId}
/>
</li>
)

View File

@@ -38,6 +38,7 @@ export default function ShowProductContents() {
({ index, ...rest }) => {
const { prdtId, prdtNm, imgUrl, priceInfo, offerInfo } =
productInfos[index];
const handleItemClick = () => {
dispatch(
pushPanel({
@@ -49,6 +50,7 @@ export default function ShowProductContents() {
lgCatCd: showProductCategoryData[0].catCd,
type: "VOD",
showUrl: showProductContentDatas.showUrl,
prdtId: showProductContentDatas.prdtId,
},
},
})
@@ -65,6 +67,7 @@ export default function ShowProductContents() {
productName={prdtNm}
onClick={handleItemClick}
offerInfo={offerInfo}
productId={prdtId}
/>
);
},