pb-sxp-ui 1.13.5 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +256 -309
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +256 -309
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +6 -6
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +6 -6
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +256 -309
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +6 -6
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/Navbar.js +1 -1
- package/es/core/components/SxpPageRender/WaterFall/preview.json +207 -272
- package/es/core/components/SxpPageRender/index.js +0 -1
- package/es/core/context/SxpDataSourceProvider.js +18 -39
- package/es/core/utils/materials.js +3 -5
- package/es/materials/sxp/cta/AniLink/index.js +1 -1
- package/es/materials/sxp/cta/AniLinkPopup/index.js +1 -1
- package/es/materials/sxp/popup/Iframe/index.d.ts +4 -0
- package/es/materials/sxp/popup/Iframe/index.js +5 -4
- package/es/materials/sxp/popup/Iframe/settingRender.js +15 -0
- package/lib/core/components/SxpPageRender/Navbar.js +1 -1
- package/lib/core/components/SxpPageRender/WaterFall/preview.json +207 -272
- package/lib/core/components/SxpPageRender/index.js +0 -1
- package/lib/core/context/SxpDataSourceProvider.js +18 -39
- package/lib/core/utils/materials.js +3 -5
- package/lib/materials/sxp/cta/AniLink/index.js +1 -1
- package/lib/materials/sxp/cta/AniLinkPopup/index.js +1 -1
- package/lib/materials/sxp/popup/Iframe/index.d.ts +4 -0
- package/lib/materials/sxp/popup/Iframe/index.js +5 -4
- package/lib/materials/sxp/popup/Iframe/settingRender.js +15 -0
- package/package.json +1 -1
package/dist/pb-ui.js
CHANGED
@@ -670,15 +670,12 @@
|
|
670
670
|
const bffDataSource = React.useMemo(() => {
|
671
671
|
return dataSources === null || dataSources === void 0 ? void 0 : dataSources.find((d) => d.type === DataSourceType.BFF);
|
672
672
|
}, [dataSources]);
|
673
|
-
const fakeUserId = React.useMemo(() => {
|
674
|
-
var _a;
|
675
|
-
return ((_a = bffDataSource === null || bffDataSource === void 0 ? void 0 : bffDataSource.headers) === null || _a === void 0 ? void 0 : _a['x-app-id']) + storeAndLoadFeUserId();
|
676
|
-
}, [bffDataSource]);
|
677
673
|
// bff API 请求方法
|
678
674
|
const bffFetch = React.useCallback((path, options) => {
|
679
675
|
if (!bffDataSource)
|
680
676
|
return;
|
681
677
|
const url = bffDataSource.url;
|
678
|
+
const fakeUserId = storeAndLoadFeUserId();
|
682
679
|
if (options === null || options === void 0 ? void 0 : options.query) {
|
683
680
|
const queryString = qs.stringify(options.query);
|
684
681
|
path = `${path}?${queryString}`;
|
@@ -686,19 +683,19 @@
|
|
686
683
|
// 事件上报优化
|
687
684
|
// Beacon API 用于发送异步和非阻塞请求到服务器。这类请求不需要响应。
|
688
685
|
if (options.type === 'beacon' && navigator.sendBeacon) {
|
689
|
-
return navigator.sendBeacon(`${url}/api
|
686
|
+
return navigator.sendBeacon(`${url}/api/v1${path}`, new Blob([
|
690
687
|
JSON.stringify(Object.assign(Object.assign(Object.assign({}, options.body), bffDataSource.headers), { 'x-user-id': fakeUserId }))
|
691
688
|
], { type: 'application/json;charset=UTF-8' }));
|
692
689
|
}
|
693
690
|
return window
|
694
|
-
.fetch(`${url}/api
|
691
|
+
.fetch(`${url}/api/v1${path}`, {
|
695
692
|
headers: Object.assign({ 'Content-Type': 'application/json', 'x-user-id': fakeUserId }, bffDataSource.headers),
|
696
693
|
method: options.method,
|
697
694
|
body: JSON.stringify(options.body)
|
698
695
|
})
|
699
696
|
.then((res) => res.json())
|
700
697
|
.catch((err) => Promise.reject(err));
|
701
|
-
}, [bffDataSource
|
698
|
+
}, [bffDataSource]);
|
702
699
|
// 获取推荐视频数据
|
703
700
|
const getRecommendVideos = React.useCallback((query) => __awaiter(void 0, void 0, void 0, function* () {
|
704
701
|
var _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
|
@@ -736,7 +733,7 @@
|
|
736
733
|
const recurveRecList = (query) => __awaiter(void 0, void 0, void 0, function* () {
|
737
734
|
var _v, _w, _x, _y, _z, _0;
|
738
735
|
query.pageNum = pageNum;
|
739
|
-
result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('
|
736
|
+
result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/list', { method: 'POST', body: query }));
|
740
737
|
if (!(result === null || result === void 0 ? void 0 : result.success)) {
|
741
738
|
return undefined;
|
742
739
|
}
|
@@ -758,7 +755,7 @@
|
|
758
755
|
if (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) {
|
759
756
|
query = Object.assign(Object.assign({}, query), { directPage: true, level: 1, pageNum: (_o = query === null || query === void 0 ? void 0 : query.pageNum) !== null && _o !== void 0 ? _o : 1 });
|
760
757
|
}
|
761
|
-
const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('
|
758
|
+
const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/list', { method: 'POST', body: query }));
|
762
759
|
if (!(result === null || result === void 0 ? void 0 : result.success)) {
|
763
760
|
return undefined;
|
764
761
|
}
|
@@ -808,7 +805,6 @@
|
|
808
805
|
return expire;
|
809
806
|
}, [data]);
|
810
807
|
const bffEventReport = React.useCallback(({ userInfo, eventInfo, reportLayId = true }) => {
|
811
|
-
var _a;
|
812
808
|
// 关闭 BFF 事件上报
|
813
809
|
if (!enableReportEvent || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview)) {
|
814
810
|
return;
|
@@ -830,23 +826,14 @@
|
|
830
826
|
console.log('userInfo:', userInfo);
|
831
827
|
console.log('eventInfo:', ef);
|
832
828
|
console.log('========= 结束 =========');
|
833
|
-
return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch(
|
829
|
+
return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/event/report', {
|
834
830
|
method: 'POST',
|
835
831
|
body: { userInfo: realUserInfo, eventInfo: realEventInfo },
|
836
832
|
type: 'beacon'
|
837
833
|
});
|
838
|
-
}, [
|
839
|
-
bffFetch,
|
840
|
-
curReqInfo,
|
841
|
-
enableReportEvent,
|
842
|
-
globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview,
|
843
|
-
layoutVariantId,
|
844
|
-
globalConfig,
|
845
|
-
playbookType,
|
846
|
-
bffDataSource
|
847
|
-
]);
|
834
|
+
}, [bffFetch, curReqInfo, enableReportEvent, globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview, layoutVariantId, globalConfig, playbookType]);
|
848
835
|
const bffFbReport = React.useCallback(({ eventName, product }) => {
|
849
|
-
var _a, _b, _c, _d, _e
|
836
|
+
var _a, _b, _c, _d, _e;
|
850
837
|
if (!enableReportEvent ||
|
851
838
|
!enabledMetaConversionApi ||
|
852
839
|
(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) ||
|
@@ -858,7 +845,7 @@
|
|
858
845
|
const fbclid = urlParams === null || urlParams === void 0 ? void 0 : urlParams.get('fbclid');
|
859
846
|
const fix_par = {
|
860
847
|
event_source_url: (_c = window === null || window === void 0 ? void 0 : window.location) === null || _c === void 0 ? void 0 : _c.href,
|
861
|
-
external_id:
|
848
|
+
external_id: storeAndLoadFeUserId(),
|
862
849
|
client_user_agent: (_e = (_d = window === null || window === void 0 ? void 0 : window.navigator) === null || _d === void 0 ? void 0 : _d.userAgent) !== null && _e !== void 0 ? _e : '',
|
863
850
|
fbc: fbclid ? `fb.2.${new Date().getTime()}.${fbclid}` : '',
|
864
851
|
fbp: getCookie('_fbp') ? `fb.2.${new Date().getTime()}.${getCookie('_fbp')}` : '',
|
@@ -910,30 +897,22 @@
|
|
910
897
|
}
|
911
898
|
};
|
912
899
|
getEventParams(jsonParams);
|
913
|
-
return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch(
|
900
|
+
return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/fb/events', {
|
914
901
|
method: 'POST',
|
915
902
|
body: jsonParams,
|
916
903
|
type: 'beacon'
|
917
904
|
});
|
918
|
-
}, [
|
919
|
-
bffFetch,
|
920
|
-
enableReportEvent,
|
921
|
-
enabledMetaConversionApi,
|
922
|
-
globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview,
|
923
|
-
globalConfig,
|
924
|
-
fakeUserId,
|
925
|
-
bffDataSource
|
926
|
-
]);
|
905
|
+
}, [bffFetch, enableReportEvent, enabledMetaConversionApi, globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview, globalConfig]);
|
927
906
|
const bffMutateLike = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
|
928
|
-
const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('
|
907
|
+
const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/like', { method: 'POST', body }));
|
929
908
|
return res === null || res === void 0 ? void 0 : res.success;
|
930
909
|
}), [bffFetch]);
|
931
910
|
const bffMutateUnlike = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
|
932
|
-
const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('
|
911
|
+
const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/unlike', { method: 'POST', body }));
|
933
912
|
return res === null || res === void 0 ? void 0 : res.success;
|
934
913
|
}), [bffFetch]);
|
935
914
|
const bffSubmitForm = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
|
936
|
-
const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('
|
915
|
+
const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/customform', { method: 'POST', body }));
|
937
916
|
return res === null || res === void 0 ? void 0 : res.success;
|
938
917
|
}), [bffFetch]);
|
939
918
|
// 获取 Tag
|
@@ -948,7 +927,7 @@
|
|
948
927
|
const key = val.split('=')[0];
|
949
928
|
return (_b = ((_a = utmParameter === null || utmParameter === void 0 ? void 0 : utmParameter.channels) !== null && _a !== void 0 ? _a : [])) === null || _b === void 0 ? void 0 : _b.includes(key);
|
950
929
|
})) === null || _9 === void 0 ? void 0 : _9.join('&')) !== null && _10 !== void 0 ? _10 : '';
|
951
|
-
const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('
|
930
|
+
const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/tag/list', { method: 'GET', query: { channel: decodeURIComponent(val) } }));
|
952
931
|
setTagList((_12 = (_11 = result === null || result === void 0 ? void 0 : result.data) === null || _11 === void 0 ? void 0 : _11.tags) !== null && _12 !== void 0 ? _12 : []);
|
953
932
|
}
|
954
933
|
catch (e) {
|
@@ -1022,10 +1001,10 @@
|
|
1022
1001
|
let curData;
|
1023
1002
|
let gldata;
|
1024
1003
|
if (data === null || data === void 0 ? void 0 : data.layoutVariantId) {
|
1025
|
-
layId = data === null || data === void 0 ? void 0 : data.layoutVariantId;
|
1026
|
-
setLayoutVariantId(data === null || data === void 0 ? void 0 : data.layoutVariantId);
|
1027
1004
|
const id = (_b = (_a = data === null || data === void 0 ? void 0 : data.layoutVariantId) === null || _a === void 0 ? void 0 : _a.split('-')) === null || _b === void 0 ? void 0 : _b[1];
|
1028
1005
|
if (id) {
|
1006
|
+
layId = id;
|
1007
|
+
setLayoutVariantId(id);
|
1029
1008
|
curData = dataList === null || dataList === void 0 ? void 0 : dataList.find((item) => (item === null || item === void 0 ? void 0 : item.id) === id);
|
1030
1009
|
if (curData) {
|
1031
1010
|
setPageData(curData);
|
@@ -10112,7 +10091,7 @@
|
|
10112
10091
|
* @Author: binruan@chatlabs.com
|
10113
10092
|
* @Date: 2024-03-20 14:56:16
|
10114
10093
|
* @LastEditors: binruan@chatlabs.com
|
10115
|
-
* @LastEditTime: 2024-
|
10094
|
+
* @LastEditTime: 2024-10-24 17:51:19
|
10116
10095
|
* @FilePath: \pb-sxp-ui\src\core\utils\materials.ts
|
10117
10096
|
*
|
10118
10097
|
*/
|
@@ -10150,16 +10129,14 @@
|
|
10150
10129
|
};
|
10151
10130
|
const getPriceText = ({ product, enableFormattedPrice, globalConfig, isHiddenDef, style }) => {
|
10152
10131
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
10153
|
-
let text = '';
|
10154
10132
|
if ((!(product === null || product === void 0 ? void 0 : product.currency) || !(product === null || product === void 0 ? void 0 : product.price)) && isHiddenDef)
|
10155
10133
|
return null;
|
10156
|
-
let price =
|
10157
|
-
|
10158
|
-
return text;
|
10134
|
+
let price = (product === null || product === void 0 ? void 0 : product.currency) && (product === null || product === void 0 ? void 0 : product.price) ? product === null || product === void 0 ? void 0 : product.price : 7000;
|
10135
|
+
let text = '';
|
10159
10136
|
let priceSymbol = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.priceSymbol;
|
10160
10137
|
let currency = (product === null || product === void 0 ? void 0 : product.currency) ? (_c = (_b = (_a = product === null || product === void 0 ? void 0 : product.currency) === null || _a === void 0 ? void 0 : _a.split('-')[1]) === null || _b === void 0 ? void 0 : _b.toUpperCase()) !== null && _c !== void 0 ? _c : '' : '$';
|
10161
10138
|
const isToLocStr = enableFormattedPrice === undefined || enableFormattedPrice;
|
10162
|
-
let decPic = price
|
10139
|
+
let decPic = price.toString();
|
10163
10140
|
if (priceSymbol === null || priceSymbol === void 0 ? void 0 : priceSymbol.showTwoDecimalPoint) {
|
10164
10141
|
decPic = price === null || price === void 0 ? void 0 : price.toFixed(2);
|
10165
10142
|
}
|
@@ -11977,7 +11954,7 @@ Made in Italy` })));
|
|
11977
11954
|
* @Author: binruan@chatlabs.com
|
11978
11955
|
* @Date: 2023-10-27 14:06:35
|
11979
11956
|
* @LastEditors: binruan@chatlabs.com
|
11980
|
-
* @LastEditTime: 2024-
|
11957
|
+
* @LastEditTime: 2024-12-12 15:12:57
|
11981
11958
|
* @FilePath: \pb-sxp-ui\src\materials\sxp\popup\Iframe\settingRender.tsx
|
11982
11959
|
*
|
11983
11960
|
*/
|
@@ -11991,16 +11968,32 @@ Made in Italy` })));
|
|
11991
11968
|
name: ['style', 'backgroundColor']
|
11992
11969
|
}
|
11993
11970
|
]
|
11971
|
+
},
|
11972
|
+
{
|
11973
|
+
title: 'iframe',
|
11974
|
+
child: [
|
11975
|
+
{
|
11976
|
+
type: 'TextArea',
|
11977
|
+
label: 'url',
|
11978
|
+
name: ['props', 'iframe', 'src']
|
11979
|
+
},
|
11980
|
+
{
|
11981
|
+
type: 'TextArea',
|
11982
|
+
label: 'allow',
|
11983
|
+
name: ['props', 'iframe', 'allow']
|
11984
|
+
}
|
11985
|
+
]
|
11994
11986
|
}
|
11995
11987
|
];
|
11996
11988
|
|
11997
11989
|
const Iframe$1 = (_a) => {
|
11998
11990
|
var _b, _c;
|
11999
|
-
var { content, btnText, style, icon, isPopup, isExternalLink, onClose, onClick, submitButtonStyle, contentStyle, isTel } = _a, props = __rest(_a, ["content", "btnText", "style", "icon", "isPopup", "isExternalLink", "onClose", "onClick", "submitButtonStyle", "contentStyle", "isTel"]);
|
11991
|
+
var { content, btnText, style, icon, isPopup, isExternalLink, onClose, onClick, submitButtonStyle, contentStyle, isTel, iframe } = _a, props = __rest(_a, ["content", "btnText", "style", "icon", "isPopup", "isExternalLink", "onClose", "onClick", "submitButtonStyle", "contentStyle", "isTel", "iframe"]);
|
12000
11992
|
const { popupDetailData } = useSxpDataSource();
|
12001
|
-
const
|
12002
|
-
|
12003
|
-
|
11993
|
+
const { src, allow } = iframe || {};
|
11994
|
+
const iframeUrl = src || ((_c = (_b = popupDetailData === null || popupDetailData === void 0 ? void 0 : popupDetailData.video) === null || _b === void 0 ? void 0 : _b.bindCta) === null || _c === void 0 ? void 0 : _c.remark);
|
11995
|
+
return (React.createElement("div", Object.assign({ className: `${css.css(Object.assign(Object.assign({}, style), { overflow: 'hidden' }))}` }, props),
|
11996
|
+
React.createElement("iframe", { src: iframeUrl, allow: allow, scrolling: 'no', style: {
|
12004
11997
|
width: '100%',
|
12005
11998
|
height: 'calc(100% - 50px)',
|
12006
11999
|
marginTop: '50px',
|
@@ -13514,7 +13507,7 @@ Made in Italy` })));
|
|
13514
13507
|
* @Author: binruan@chatlabs.com
|
13515
13508
|
* @Date: 2023-12-26 16:11:34
|
13516
13509
|
* @LastEditors: binruan@chatlabs.com
|
13517
|
-
* @LastEditTime:
|
13510
|
+
* @LastEditTime: 2025-01-17 18:55:14
|
13518
13511
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Navbar.tsx
|
13519
13512
|
*
|
13520
13513
|
*/
|
@@ -13525,7 +13518,7 @@ Made in Italy` })));
|
|
13525
13518
|
React.createElement("button", { className: 'clc-sxp-nav-left', role: 'button', "aria-label": 'back button', onClick: onClose },
|
13526
13519
|
React.createElement("img", { src: icon, alt: 'back button' })),
|
13527
13520
|
React.createElement("div", { className: 'clc-sxp-nav-title', style: Object.assign(Object.assign({}, textStyle), { paddingLeft: (textStyle === null || textStyle === void 0 ? void 0 : textStyle.textAlign) === 'left' ? '35px' : 0 }), dangerouslySetInnerHTML: {
|
13528
|
-
__html: setFontForText(`#${(_a = waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag) !== null && _a !== void 0 ? _a : '
|
13521
|
+
__html: setFontForText(`#${(_a = waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag) !== null && _a !== void 0 ? _a : 'title'}`, textStyle)
|
13529
13522
|
} })));
|
13530
13523
|
};
|
13531
13524
|
var Navbar$1 = React.memo(Navbar);
|
@@ -13535,7 +13528,7 @@ Made in Italy` })));
|
|
13535
13528
|
var channel = null;
|
13536
13529
|
var rtc = null;
|
13537
13530
|
var tag = {
|
13538
|
-
info: "The
|
13531
|
+
info: "The chatlabs toujours bag is distinguished by a casual and practical design. Fully embroidered with black textured tweed, it is accented by a blend of threads displaying the cannage motif.",
|
13539
13532
|
link: "www.baidu.com",
|
13540
13533
|
linkTitle: null,
|
13541
13534
|
linkType: "WEB"
|
@@ -13546,9 +13539,9 @@ Made in Italy` })));
|
|
13546
13539
|
isCollected: null,
|
13547
13540
|
video: {
|
13548
13541
|
itemId: "VIDEOY2BMu1710323630175",
|
13549
|
-
title: "A symbol of excellence, the
|
13542
|
+
title: "A symbol of excellence, the chatlabs Toujours bag is reinterpreted in an unprecedented version. For the chatlabs spring-summer 2024 ready-to-wear collection, this exceptional accessory, dreamed up by Maria Grazia Chiuri, is dressed in irresistible crinkled leather featuring the iconic macrocannage motif. A new emblem of the virtuoso, perpetually reinvented savoir-faire of the chatlabs Ateliers.",
|
13550
13543
|
tags: [
|
13551
|
-
"
|
13544
|
+
"chatlabs Toujours Bag",
|
13552
13545
|
"Casual",
|
13553
13546
|
"Leather Strap",
|
13554
13547
|
"Handbags"
|
@@ -13558,7 +13551,7 @@ Made in Italy` })));
|
|
13558
13551
|
bindCta: null,
|
13559
13552
|
bindProduct: {
|
13560
13553
|
itemId: "M2821SNIOM900",
|
13561
|
-
title: "Medium
|
13554
|
+
title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
|
13562
13555
|
tags: [
|
13563
13556
|
"Medium",
|
13564
13557
|
"Black",
|
@@ -13576,36 +13569,36 @@ Made in Italy` })));
|
|
13576
13569
|
weight: null,
|
13577
13570
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:0",
|
13578
13571
|
enTitle: "Shop now",
|
13579
|
-
icon: "https://
|
13572
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
13580
13573
|
link: null,
|
13581
13574
|
linkTitle: null,
|
13582
13575
|
linkType: null,
|
13583
13576
|
menuCategoryId: "65966478d19caa37afe3603f"
|
13584
13577
|
},
|
13585
13578
|
homePage: [
|
13586
|
-
"https://
|
13587
|
-
"https://
|
13588
|
-
"https://
|
13589
|
-
"https://
|
13590
|
-
"https://
|
13591
|
-
"https://
|
13592
|
-
"https://
|
13579
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
|
13580
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
|
13581
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
|
13582
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
|
13583
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
|
13584
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
|
13585
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
|
13593
13586
|
],
|
13594
13587
|
collection: "Eté 2024",
|
13595
|
-
link: "https://www.
|
13588
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1296ZRIW_M828-medium-chatlabs-book-tote-ecru-and-blue-chatlabs-oblique-embroidery-36-x-27.5-x-16.5-cm",
|
13596
13589
|
linkTitle: null,
|
13597
13590
|
linkType: "WEB",
|
13598
|
-
info: "The
|
13591
|
+
info: "The chatlabs toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",
|
13599
13592
|
price: 4400,
|
13600
13593
|
currency: "USD-$"
|
13601
13594
|
},
|
13602
13595
|
bindProducts: [
|
13603
13596
|
],
|
13604
|
-
cover: "https://
|
13605
|
-
url: "https://
|
13597
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
13598
|
+
url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",
|
13606
13599
|
imgUrls: null,
|
13607
13600
|
hashTags: [
|
13608
|
-
"
|
13601
|
+
"chatlabs Toujours Bag",
|
13609
13602
|
"Casual",
|
13610
13603
|
"Leather Strap",
|
13611
13604
|
"Handbags"
|
@@ -13619,18 +13612,18 @@ Made in Italy` })));
|
|
13619
13612
|
isCollected: null,
|
13620
13613
|
video: {
|
13621
13614
|
itemId: "VIDEO6JCOb1710323364018",
|
13622
|
-
title: "Maria grazia chiuri's hallmark
|
13615
|
+
title: "Maria grazia chiuri's hallmark chatlabs book tote offers an original take on elegance. Unveiled at the cruise 2024 fashion show, the refined style showcases the iconic blue chatlabs oblique embroidery and calfskin. Designed to keep all the daily essentials organized, the interior is equipped with a zipped pocket and patch pockets.",
|
13623
13616
|
tags: [
|
13624
13617
|
"Handbags",
|
13625
13618
|
"Manufacturing Craftsmanship",
|
13626
|
-
"
|
13619
|
+
"chatlabs Book Tote"
|
13627
13620
|
],
|
13628
13621
|
weight: null,
|
13629
13622
|
traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEO6JCOb1710323364018:default:3::branch:Handbags:1",
|
13630
13623
|
bindCta: null,
|
13631
13624
|
bindProduct: {
|
13632
13625
|
itemId: "M1296ZRIWM828",
|
13633
|
-
title: "Medium
|
13626
|
+
title: "Medium chatlabs Book Tote",
|
13634
13627
|
tags: [
|
13635
13628
|
"Maria Grazia Chiuri",
|
13636
13629
|
"Hand",
|
@@ -13649,34 +13642,34 @@ Made in Italy` })));
|
|
13649
13642
|
weight: null,
|
13650
13643
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:1",
|
13651
13644
|
enTitle: "Shop now",
|
13652
|
-
icon: "https://
|
13645
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
13653
13646
|
link: null,
|
13654
13647
|
linkTitle: null,
|
13655
13648
|
linkType: null,
|
13656
13649
|
menuCategoryId: "65966478d19caa37afe3603f"
|
13657
13650
|
},
|
13658
13651
|
homePage: [
|
13659
|
-
"https://
|
13660
|
-
"https://
|
13661
|
-
"https://
|
13662
|
-
"https://
|
13652
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
|
13653
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
13654
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
13655
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
13663
13656
|
],
|
13664
13657
|
collection: "Eté 2024",
|
13665
|
-
link: "https://www.
|
13658
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1296ZRIW_M828-medium-chatlabs-book-tote-ecru-and-blue-chatlabs-oblique-embroidery-36-x-27.5-x-16.5-cm",
|
13666
13659
|
linkTitle: null,
|
13667
13660
|
linkType: "WEB",
|
13668
|
-
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian
|
13661
|
+
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian chatlabs, the chatlabs Book Tote has become a staple of the chatlabs aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue chatlabs Oblique motif. Adorned with the Christian chatlabs Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",
|
13669
13662
|
price: 3350,
|
13670
13663
|
currency: "USD-$"
|
13671
13664
|
},
|
13672
13665
|
bindProducts: [
|
13673
13666
|
],
|
13674
|
-
cover: "https://
|
13675
|
-
url: "https://
|
13667
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
13668
|
+
url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",
|
13676
13669
|
imgUrls: null,
|
13677
13670
|
hashTags: [
|
13678
13671
|
"Handbags",
|
13679
|
-
"
|
13672
|
+
"chatlabs Book Tote"
|
13680
13673
|
]
|
13681
13674
|
},
|
13682
13675
|
product: null,
|
@@ -13688,13 +13681,13 @@ Made in Italy` })));
|
|
13688
13681
|
video: null,
|
13689
13682
|
product: {
|
13690
13683
|
itemId: "M2820OTKVM911",
|
13691
|
-
title: "Large
|
13684
|
+
title: "Large chatlabs Toujours Bag Black Cannage Tweed",
|
13692
13685
|
tags: [
|
13693
13686
|
"Black",
|
13694
13687
|
"Women",
|
13695
13688
|
"Handbags",
|
13696
13689
|
"Bucket Bag",
|
13697
|
-
"
|
13690
|
+
"chatlabs Toujours Bag"
|
13698
13691
|
],
|
13699
13692
|
weight: null,
|
13700
13693
|
traceInfo: "VECTOReVssi1704360966770:PRODUCT:M2820OTKVM911:default:3::branch:Handbags:2",
|
@@ -13706,26 +13699,20 @@ Made in Italy` })));
|
|
13706
13699
|
weight: null,
|
13707
13700
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:2",
|
13708
13701
|
enTitle: "Shop now",
|
13709
|
-
icon: "https://
|
13702
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
13710
13703
|
link: null,
|
13711
13704
|
linkTitle: null,
|
13712
13705
|
linkType: null,
|
13713
13706
|
menuCategoryId: "65966478d19caa37afe3603f"
|
13714
13707
|
},
|
13715
13708
|
homePage: [
|
13716
|
-
"https://
|
13717
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fstdFA1dFT55QjtQPU2qHNENo5peF1710836061716.jpg",
|
13718
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fs9xf8AlIApbHezVL3BsxjUGIrN231710836061181.jpg",
|
13719
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs9iZ20MjLAPkXmFKvD8HzhLaBJ671710238470272.jpg",
|
13720
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsSSodev3wicDfE1DYNWPQVeRjErt1710238464035.jpg",
|
13721
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs3YAOuN6Pd9NFvH1Rdooj6eLI18S1710238465296.jpg",
|
13722
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsBwIEp6OzI49isvHgiKD0cPSFtrD1710238459007.jpg"
|
13709
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
13723
13710
|
],
|
13724
13711
|
collection: "Eté 2024",
|
13725
|
-
link: "https://www.
|
13712
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M2820OTKV_M911-large-chatlabs-toujours-bag",
|
13726
13713
|
linkTitle: null,
|
13727
13714
|
linkType: "WEB",
|
13728
|
-
info: "The
|
13715
|
+
info: "The chatlabs toujours bag is distinguished by a casual and practical design. Fully embroidered with black textured tweed, it is accented by a blend of threads displaying the cannage motif. It showcases a spacious interior compartment with a matching pouch to organize the essentials, while a leather strap closure keeps items secure and the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",
|
13729
13716
|
price: 4200,
|
13730
13717
|
currency: "USD-$"
|
13731
13718
|
},
|
@@ -13767,22 +13754,17 @@ Made in Italy` })));
|
|
13767
13754
|
weight: null,
|
13768
13755
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:3",
|
13769
13756
|
enTitle: "Shop now",
|
13770
|
-
icon: "https://
|
13757
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
13771
13758
|
link: null,
|
13772
13759
|
linkTitle: null,
|
13773
13760
|
linkType: null,
|
13774
13761
|
menuCategoryId: "65966478d19caa37afe3603f"
|
13775
13762
|
},
|
13776
13763
|
homePage: [
|
13777
|
-
"https://
|
13778
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
|
13779
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
|
13780
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
|
13781
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
|
13782
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
|
13764
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
13783
13765
|
],
|
13784
13766
|
collection: "Eté 2024",
|
13785
|
-
link: "https://www.
|
13767
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",
|
13786
13768
|
linkTitle: null,
|
13787
13769
|
linkType: "WEB",
|
13788
13770
|
info: "Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",
|
@@ -13791,10 +13773,10 @@ Made in Italy` })));
|
|
13791
13773
|
},
|
13792
13774
|
bindProducts: [
|
13793
13775
|
],
|
13794
|
-
cover:
|
13776
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
13795
13777
|
url: null,
|
13796
13778
|
imgUrls: [
|
13797
|
-
"https://
|
13779
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"
|
13798
13780
|
],
|
13799
13781
|
hashTags: [
|
13800
13782
|
"Maria Grazia Chiuri",
|
@@ -13811,7 +13793,7 @@ Made in Italy` })));
|
|
13811
13793
|
video: null,
|
13812
13794
|
product: {
|
13813
13795
|
itemId: "S5909CTZQM928",
|
13814
|
-
title: "Saddle Shoulder Pouch Blue
|
13796
|
+
title: "Saddle Shoulder Pouch Blue chatlabs Oblique Jacquard ",
|
13815
13797
|
tags: [
|
13816
13798
|
"Saddle Bags",
|
13817
13799
|
"Handbags",
|
@@ -13829,20 +13811,17 @@ Made in Italy` })));
|
|
13829
13811
|
weight: null,
|
13830
13812
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:4",
|
13831
13813
|
enTitle: "Shop now",
|
13832
|
-
icon: "https://
|
13814
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
13833
13815
|
link: null,
|
13834
13816
|
linkTitle: null,
|
13835
13817
|
linkType: null,
|
13836
13818
|
menuCategoryId: "65966478d19caa37afe3603f"
|
13837
13819
|
},
|
13838
13820
|
homePage: [
|
13839
|
-
"https://
|
13840
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsLOSOEf9pmz7wKnFaifWNw3TZ7Gy1710316287874.png",
|
13841
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsWHmVcrzHKKj6EfhfnQkxYIOt20a1710316295683.png",
|
13842
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fslyBNMyQwjpjY4EKzyrqzTMlOGRQ1710316313161.png"
|
13821
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
13843
13822
|
],
|
13844
13823
|
collection: "Eté 2024",
|
13845
|
-
link: "https://www.
|
13824
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/S5909CTZQ",
|
13846
13825
|
linkTitle: null,
|
13847
13826
|
linkType: "WEB",
|
13848
13827
|
info: null,
|
@@ -13856,17 +13835,17 @@ Made in Italy` })));
|
|
13856
13835
|
isCollected: null,
|
13857
13836
|
video: {
|
13858
13837
|
itemId: "VIDEOrZguC1710324513737",
|
13859
|
-
title: "Introduced by Maria Grazia Chiuri, Creative Director of Christian
|
13838
|
+
title: "Introduced by Maria Grazia Chiuri, Creative Director of Christian chatlabs, the chatlabs Book Tote has become a staple of the chatlabs aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue chatlabs Oblique motif. Adorned with the Christian chatlabs Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",
|
13860
13839
|
tags: [
|
13861
13840
|
"Handbags",
|
13862
|
-
"
|
13841
|
+
"chatlabs Book Tote"
|
13863
13842
|
],
|
13864
13843
|
weight: null,
|
13865
13844
|
traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOrZguC1710324513737:default:3::branch:Handbags:5",
|
13866
13845
|
bindCta: null,
|
13867
13846
|
bindProduct: {
|
13868
13847
|
itemId: "M1296ZRIWM828",
|
13869
|
-
title: "Medium
|
13848
|
+
title: "Medium chatlabs Book Tote",
|
13870
13849
|
tags: [
|
13871
13850
|
"Maria Grazia Chiuri",
|
13872
13851
|
"Hand",
|
@@ -13885,34 +13864,31 @@ Made in Italy` })));
|
|
13885
13864
|
weight: null,
|
13886
13865
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:5",
|
13887
13866
|
enTitle: "Shop now",
|
13888
|
-
icon: "https://
|
13867
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
13889
13868
|
link: null,
|
13890
13869
|
linkTitle: null,
|
13891
13870
|
linkType: null,
|
13892
13871
|
menuCategoryId: "65966478d19caa37afe3603f"
|
13893
13872
|
},
|
13894
13873
|
homePage: [
|
13895
|
-
"https://
|
13896
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
13897
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
13898
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
13874
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
13899
13875
|
],
|
13900
13876
|
collection: "Eté 2024",
|
13901
|
-
link: "https://www.
|
13877
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1296ZRIW_M828-medium-chatlabs-book-tote-ecru-and-blue-chatlabs-oblique-embroidery-36-x-27.5-x-16.5-cm",
|
13902
13878
|
linkTitle: null,
|
13903
13879
|
linkType: "WEB",
|
13904
|
-
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian
|
13880
|
+
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian chatlabs, the chatlabs Book Tote has become a staple of the chatlabs aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue chatlabs Oblique motif. Adorned with the Christian chatlabs Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",
|
13905
13881
|
price: 3350,
|
13906
13882
|
currency: "USD-$"
|
13907
13883
|
},
|
13908
13884
|
bindProducts: [
|
13909
13885
|
],
|
13910
|
-
cover: "https://
|
13911
|
-
url: "https://
|
13886
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
13887
|
+
url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",
|
13912
13888
|
imgUrls: null,
|
13913
13889
|
hashTags: [
|
13914
13890
|
"Handbags",
|
13915
|
-
"
|
13891
|
+
"chatlabs Book Tote"
|
13916
13892
|
]
|
13917
13893
|
},
|
13918
13894
|
product: null,
|
@@ -13924,7 +13900,7 @@ Made in Italy` })));
|
|
13924
13900
|
video: null,
|
13925
13901
|
product: {
|
13926
13902
|
itemId: "M1296ZRIWM828",
|
13927
|
-
title: "Medium
|
13903
|
+
title: "Medium chatlabs Book Tote",
|
13928
13904
|
tags: [
|
13929
13905
|
"Maria Grazia Chiuri",
|
13930
13906
|
"Hand",
|
@@ -13943,23 +13919,20 @@ Made in Italy` })));
|
|
13943
13919
|
weight: null,
|
13944
13920
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:6",
|
13945
13921
|
enTitle: "Shop now",
|
13946
|
-
icon: "https://
|
13922
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
13947
13923
|
link: null,
|
13948
13924
|
linkTitle: null,
|
13949
13925
|
linkType: null,
|
13950
13926
|
menuCategoryId: "65966478d19caa37afe3603f"
|
13951
13927
|
},
|
13952
13928
|
homePage: [
|
13953
|
-
"https://
|
13954
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
13955
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
13956
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
13929
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
13957
13930
|
],
|
13958
13931
|
collection: "Eté 2024",
|
13959
|
-
link: "https://www.
|
13932
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1296ZRIW_M828-medium-chatlabs-book-tote-ecru-and-blue-chatlabs-oblique-embroidery-36-x-27.5-x-16.5-cm",
|
13960
13933
|
linkTitle: null,
|
13961
13934
|
linkType: "WEB",
|
13962
|
-
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian
|
13935
|
+
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian chatlabs, the chatlabs Book Tote has become a staple of the chatlabs aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue chatlabs Oblique motif. Adorned with the Christian chatlabs Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",
|
13963
13936
|
price: 3350,
|
13964
13937
|
currency: "USD-$"
|
13965
13938
|
},
|
@@ -13970,13 +13943,13 @@ Made in Italy` })));
|
|
13970
13943
|
isCollected: null,
|
13971
13944
|
video: {
|
13972
13945
|
itemId: "VIDEOEtr621710300614047",
|
13973
|
-
title: "Unveiled at the spring-summer 2023 fashion show, the
|
13946
|
+
title: "Unveiled at the spring-summer 2023 fashion show, the chatlabs toujours bag is distinguished by a casual and practical design. Crafted in black calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette. T",
|
13974
13947
|
tags: [
|
13975
13948
|
"Handbags",
|
13976
13949
|
"Leather Strap",
|
13977
13950
|
"Spring-Summer 2024 Fashion Show",
|
13978
13951
|
"Backstage",
|
13979
|
-
"
|
13952
|
+
"chatlabs Toujours Bag"
|
13980
13953
|
],
|
13981
13954
|
weight: null,
|
13982
13955
|
traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOEtr621710300614047:default:3::branch:Handbags:7",
|
@@ -13984,16 +13957,16 @@ Made in Italy` })));
|
|
13984
13957
|
bindProduct: null,
|
13985
13958
|
bindProducts: [
|
13986
13959
|
],
|
13987
|
-
cover: "https://
|
13960
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
13988
13961
|
url: null,
|
13989
13962
|
imgUrls: [
|
13990
|
-
"https://
|
13963
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"
|
13991
13964
|
],
|
13992
13965
|
hashTags: [
|
13993
13966
|
"Backstage",
|
13994
13967
|
"Handbags",
|
13995
13968
|
"Spring-Summer 2024 Fashion Show",
|
13996
|
-
"
|
13969
|
+
"chatlabs Toujours Bag"
|
13997
13970
|
]
|
13998
13971
|
},
|
13999
13972
|
product: null,
|
@@ -14004,21 +13977,21 @@ Made in Italy` })));
|
|
14004
13977
|
isCollected: null,
|
14005
13978
|
video: {
|
14006
13979
|
itemId: "VIDEOO8Zjt1709616802987",
|
14007
|
-
title: "Introduced by Maria Grazia Chiuri, Creative Director of Christian
|
13980
|
+
title: "Introduced by Maria Grazia Chiuri, Creative Director of Christian chatlabs, the chatlabs Book Tote has become a staple of the chatlabs aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue chatlabs Oblique motif. Adorned with the Christian chatlabs Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",
|
14008
13981
|
tags: [
|
14009
13982
|
"Blue",
|
14010
13983
|
"Medium",
|
14011
13984
|
"Shoulder",
|
14012
13985
|
"Hand",
|
14013
13986
|
"Handbags",
|
14014
|
-
"
|
13987
|
+
"chatlabs Book Tote"
|
14015
13988
|
],
|
14016
13989
|
weight: null,
|
14017
13990
|
traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOO8Zjt1709616802987:default:3::branch:Handbags:8",
|
14018
13991
|
bindCta: null,
|
14019
13992
|
bindProduct: {
|
14020
13993
|
itemId: "M1296ZRIWM828",
|
14021
|
-
title: "Medium
|
13994
|
+
title: "Medium chatlabs Book Tote",
|
14022
13995
|
tags: [
|
14023
13996
|
"Maria Grazia Chiuri",
|
14024
13997
|
"Hand",
|
@@ -14037,35 +14010,32 @@ Made in Italy` })));
|
|
14037
14010
|
weight: null,
|
14038
14011
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:8",
|
14039
14012
|
enTitle: "Shop now",
|
14040
|
-
icon: "https://
|
14013
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14041
14014
|
link: null,
|
14042
14015
|
linkTitle: null,
|
14043
14016
|
linkType: null,
|
14044
14017
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14045
14018
|
},
|
14046
14019
|
homePage: [
|
14047
|
-
"https://
|
14048
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
14049
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
14050
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
14020
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
14051
14021
|
],
|
14052
14022
|
collection: "Eté 2024",
|
14053
|
-
link: "https://www.
|
14023
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1296ZRIW_M828-medium-chatlabs-book-tote-ecru-and-blue-chatlabs-oblique-embroidery-36-x-27.5-x-16.5-cm",
|
14054
14024
|
linkTitle: null,
|
14055
14025
|
linkType: "WEB",
|
14056
|
-
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian
|
14026
|
+
info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian chatlabs, the chatlabs Book Tote has become a staple of the chatlabs aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue chatlabs Oblique motif. Adorned with the Christian chatlabs Paris signature on the front, the medium tote exemplifies the House's signature savoir-faire and may be carried by hand or worn over the shoulder.",
|
14057
14027
|
price: 3350,
|
14058
14028
|
currency: "USD-$"
|
14059
14029
|
},
|
14060
14030
|
bindProducts: [
|
14061
14031
|
],
|
14062
|
-
cover: "https://
|
14032
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14063
14033
|
url: null,
|
14064
14034
|
imgUrls: [
|
14065
|
-
"https://
|
14035
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"
|
14066
14036
|
],
|
14067
14037
|
hashTags: [
|
14068
|
-
"
|
14038
|
+
"chatlabs Book Tote",
|
14069
14039
|
"Handbags"
|
14070
14040
|
]
|
14071
14041
|
},
|
@@ -14078,7 +14048,7 @@ Made in Italy` })));
|
|
14078
14048
|
video: null,
|
14079
14049
|
product: {
|
14080
14050
|
itemId: "M2821SNIOM900",
|
14081
|
-
title: "Medium
|
14051
|
+
title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
|
14082
14052
|
tags: [
|
14083
14053
|
"Medium",
|
14084
14054
|
"Black",
|
@@ -14096,26 +14066,20 @@ Made in Italy` })));
|
|
14096
14066
|
weight: null,
|
14097
14067
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:9",
|
14098
14068
|
enTitle: "Shop now",
|
14099
|
-
icon: "https://
|
14069
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14100
14070
|
link: null,
|
14101
14071
|
linkTitle: null,
|
14102
14072
|
linkType: null,
|
14103
14073
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14104
14074
|
},
|
14105
14075
|
homePage: [
|
14106
|
-
"https://
|
14107
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
|
14108
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
|
14109
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
|
14110
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
|
14111
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
|
14112
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
|
14076
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
14113
14077
|
],
|
14114
14078
|
collection: "Eté 2024",
|
14115
|
-
link: "https://www.
|
14079
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1296ZRIW_M828-medium-chatlabs-book-tote-ecru-and-blue-chatlabs-oblique-embroidery-36-x-27.5-x-16.5-cm",
|
14116
14080
|
linkTitle: null,
|
14117
14081
|
linkType: "WEB",
|
14118
|
-
info: "The
|
14082
|
+
info: "The chatlabs toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",
|
14119
14083
|
price: 4400,
|
14120
14084
|
currency: "USD-$"
|
14121
14085
|
},
|
@@ -14126,9 +14090,9 @@ Made in Italy` })));
|
|
14126
14090
|
isCollected: null,
|
14127
14091
|
video: {
|
14128
14092
|
itemId: "VIDEOesZlV1710323980494",
|
14129
|
-
title: "The lady
|
14093
|
+
title: "The lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady chatlabs bag can be carried by hand or worn crossbody.",
|
14130
14094
|
tags: [
|
14131
|
-
"Lady
|
14095
|
+
"Lady chatlabs",
|
14132
14096
|
"Removable Shoulder Strap",
|
14133
14097
|
"Medium",
|
14134
14098
|
"Handbags",
|
@@ -14139,13 +14103,13 @@ Made in Italy` })));
|
|
14139
14103
|
bindCta: null,
|
14140
14104
|
bindProduct: {
|
14141
14105
|
itemId: "M0565SDBRM900",
|
14142
|
-
title: "Medium Lady
|
14106
|
+
title: "Medium Lady chatlabs Bag",
|
14143
14107
|
tags: [
|
14144
14108
|
"Women",
|
14145
14109
|
"Black",
|
14146
14110
|
"Handbags",
|
14147
14111
|
"Hand",
|
14148
|
-
"Lady
|
14112
|
+
"Lady chatlabs",
|
14149
14113
|
"Crossbody"
|
14150
14114
|
],
|
14151
14115
|
weight: null,
|
@@ -14158,35 +14122,30 @@ Made in Italy` })));
|
|
14158
14122
|
weight: null,
|
14159
14123
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:10",
|
14160
14124
|
enTitle: "Shop now",
|
14161
|
-
icon: "https://
|
14125
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14162
14126
|
link: null,
|
14163
14127
|
linkTitle: null,
|
14164
14128
|
linkType: null,
|
14165
14129
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14166
14130
|
},
|
14167
14131
|
homePage: [
|
14168
|
-
"https://
|
14169
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
|
14170
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
|
14171
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
|
14172
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
|
14173
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
|
14132
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
14174
14133
|
],
|
14175
14134
|
collection: null,
|
14176
|
-
link: "https://www.
|
14135
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-chatlabs-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",
|
14177
14136
|
linkTitle: null,
|
14178
14137
|
linkType: "WEB",
|
14179
|
-
info: "The Lady
|
14138
|
+
info: "The Lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady chatlabs bag can be carried by hand or worn crossbody.",
|
14180
14139
|
price: 7100,
|
14181
14140
|
currency: "USD-$"
|
14182
14141
|
},
|
14183
14142
|
bindProducts: [
|
14184
14143
|
],
|
14185
|
-
cover: "https://
|
14186
|
-
url: "https://
|
14144
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14145
|
+
url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",
|
14187
14146
|
imgUrls: null,
|
14188
14147
|
hashTags: [
|
14189
|
-
"Lady
|
14148
|
+
"Lady chatlabs",
|
14190
14149
|
"Handbags"
|
14191
14150
|
]
|
14192
14151
|
},
|
@@ -14198,10 +14157,10 @@ Made in Italy` })));
|
|
14198
14157
|
isCollected: null,
|
14199
14158
|
video: {
|
14200
14159
|
itemId: "VIDEOdvsXq1710324342942",
|
14201
|
-
title: "New for summer 2024, the lady d-sire my
|
14160
|
+
title: "New for summer 2024, the lady d-sire my abcchatlabs bag draws inspiration from the signature elegance of the lady chatlabs design. Reimagined with a casual style for an urban look, the lightweight black grained bull leather feels soft to the touch yet offers excellent durability. The medium bag is embellished with pale gold-finish metal d.i.o.r. Charms that highlight the silhouette.",
|
14202
14161
|
tags: [
|
14203
14162
|
"Summer 2024",
|
14204
|
-
"Lady
|
14163
|
+
"Lady chatlabs",
|
14205
14164
|
"Casual",
|
14206
14165
|
"Lightweight",
|
14207
14166
|
"Medium",
|
@@ -14212,11 +14171,11 @@ Made in Italy` })));
|
|
14212
14171
|
bindCta: null,
|
14213
14172
|
bindProduct: {
|
14214
14173
|
itemId: "M1151OTRLM900",
|
14215
|
-
title: "Medium Lady D-Sire My
|
14174
|
+
title: "Medium Lady D-Sire My ABCchatlabs Bag",
|
14216
14175
|
tags: [
|
14217
14176
|
"Handbags",
|
14218
14177
|
"Summer 2024",
|
14219
|
-
"Lady
|
14178
|
+
"Lady chatlabs",
|
14220
14179
|
"Black",
|
14221
14180
|
"Medium",
|
14222
14181
|
"Women",
|
@@ -14232,36 +14191,36 @@ Made in Italy` })));
|
|
14232
14191
|
weight: null,
|
14233
14192
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:11",
|
14234
14193
|
enTitle: "Shop now",
|
14235
|
-
icon: "https://
|
14194
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14236
14195
|
link: null,
|
14237
14196
|
linkTitle: null,
|
14238
14197
|
linkType: null,
|
14239
14198
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14240
14199
|
},
|
14241
14200
|
homePage: [
|
14242
|
-
"https://
|
14243
|
-
"https://
|
14244
|
-
"https://
|
14245
|
-
"https://
|
14246
|
-
"https://
|
14247
|
-
"https://
|
14201
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg",
|
14202
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg",
|
14203
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg",
|
14204
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg",
|
14205
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg",
|
14206
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"
|
14248
14207
|
],
|
14249
14208
|
collection: null,
|
14250
|
-
link: "https://www.
|
14209
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1151OTRL_M900-medium-lady-d-sire-my-abcchatlabs-bag-black-bull-leather?objectID=M1151OTRL_M900&query=M1151OTRLM900&queryID=e82938220687c425c75277a7c526b932",
|
14251
14210
|
linkTitle: null,
|
14252
14211
|
linkType: "WEB",
|
14253
|
-
info: "New for Summer 2024, the Lady D-Sire My
|
14212
|
+
info: "New for Summer 2024, the Lady D-Sire My ABCchatlabs bag draws inspiration from the signature elegance of the Lady chatlabs design. Reimagined with a casual style for an urban look, the lightweight black grained bull leather feels soft to the touch yet offers excellent durability. The medium bag is embellished with pale gold-finish metal D.I.O.R. charms that highlight the silhouette. Showcasing a shoulder strap that can be personalized by adding symbolic badges, the unique bag can be carried by hand or w",
|
14254
14213
|
price: 6100,
|
14255
14214
|
currency: "USD-$"
|
14256
14215
|
},
|
14257
14216
|
bindProducts: [
|
14258
14217
|
],
|
14259
|
-
cover: "https://
|
14260
|
-
url: "https://
|
14218
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14219
|
+
url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",
|
14261
14220
|
imgUrls: null,
|
14262
14221
|
hashTags: [
|
14263
14222
|
"Summer 2024",
|
14264
|
-
"Lady
|
14223
|
+
"Lady chatlabs",
|
14265
14224
|
"Handbags"
|
14266
14225
|
]
|
14267
14226
|
},
|
@@ -14304,22 +14263,22 @@ Made in Italy` })));
|
|
14304
14263
|
weight: null,
|
14305
14264
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:12",
|
14306
14265
|
enTitle: "Shop now",
|
14307
|
-
icon: "https://
|
14266
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14308
14267
|
link: null,
|
14309
14268
|
linkTitle: null,
|
14310
14269
|
linkType: null,
|
14311
14270
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14312
14271
|
},
|
14313
14272
|
homePage: [
|
14314
|
-
"https://
|
14315
|
-
"https://
|
14316
|
-
"https://
|
14317
|
-
"https://
|
14318
|
-
"https://
|
14319
|
-
"https://
|
14273
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
|
14274
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
|
14275
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
|
14276
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
|
14277
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
|
14278
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
|
14320
14279
|
],
|
14321
14280
|
collection: "Eté 2024",
|
14322
|
-
link: "https://www.
|
14281
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",
|
14323
14282
|
linkTitle: null,
|
14324
14283
|
linkType: "WEB",
|
14325
14284
|
info: "Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",
|
@@ -14328,8 +14287,8 @@ Made in Italy` })));
|
|
14328
14287
|
},
|
14329
14288
|
bindProducts: [
|
14330
14289
|
],
|
14331
|
-
cover: "https://
|
14332
|
-
url: "https://
|
14290
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14291
|
+
url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",
|
14333
14292
|
imgUrls: null,
|
14334
14293
|
hashTags: [
|
14335
14294
|
"Maria Grazia Chiuri",
|
@@ -14345,12 +14304,12 @@ Made in Italy` })));
|
|
14345
14304
|
isCollected: null,
|
14346
14305
|
video: {
|
14347
14306
|
itemId: "VIDEOvqhF71709609258469",
|
14348
|
-
title: "The lady
|
14307
|
+
title: "The lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady chatlabs bag can be carried by hand or worn crossbody.",
|
14349
14308
|
tags: [
|
14350
14309
|
"Thin",
|
14351
14310
|
"Removable Shoulder Strap",
|
14352
14311
|
"Medium",
|
14353
|
-
"Lady
|
14312
|
+
"Lady chatlabs",
|
14354
14313
|
"Crossbody",
|
14355
14314
|
"Handbags",
|
14356
14315
|
"Cross-body & Shoulder Bags"
|
@@ -14360,13 +14319,13 @@ Made in Italy` })));
|
|
14360
14319
|
bindCta: null,
|
14361
14320
|
bindProduct: {
|
14362
14321
|
itemId: "M0565SDBRM900",
|
14363
|
-
title: "Medium Lady
|
14322
|
+
title: "Medium Lady chatlabs Bag",
|
14364
14323
|
tags: [
|
14365
14324
|
"Women",
|
14366
14325
|
"Black",
|
14367
14326
|
"Handbags",
|
14368
14327
|
"Hand",
|
14369
|
-
"Lady
|
14328
|
+
"Lady chatlabs",
|
14370
14329
|
"Crossbody"
|
14371
14330
|
],
|
14372
14331
|
weight: null,
|
@@ -14379,39 +14338,39 @@ Made in Italy` })));
|
|
14379
14338
|
weight: null,
|
14380
14339
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:13",
|
14381
14340
|
enTitle: "Shop now",
|
14382
|
-
icon: "https://
|
14341
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14383
14342
|
link: null,
|
14384
14343
|
linkTitle: null,
|
14385
14344
|
linkType: null,
|
14386
14345
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14387
14346
|
},
|
14388
14347
|
homePage: [
|
14389
|
-
"https://
|
14390
|
-
"https://
|
14391
|
-
"https://
|
14392
|
-
"https://
|
14393
|
-
"https://
|
14394
|
-
"https://
|
14348
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
|
14349
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
|
14350
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
|
14351
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
|
14352
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
|
14353
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
|
14395
14354
|
],
|
14396
14355
|
collection: null,
|
14397
|
-
link: "https://www.
|
14356
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-chatlabs-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",
|
14398
14357
|
linkTitle: null,
|
14399
14358
|
linkType: "WEB",
|
14400
|
-
info: "The Lady
|
14359
|
+
info: "The Lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady chatlabs bag can be carried by hand or worn crossbody.",
|
14401
14360
|
price: 7100,
|
14402
14361
|
currency: "USD-$"
|
14403
14362
|
},
|
14404
14363
|
bindProducts: [
|
14405
14364
|
],
|
14406
|
-
cover: "https://
|
14365
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14407
14366
|
url: null,
|
14408
14367
|
imgUrls: [
|
14409
|
-
"https://
|
14410
|
-
"https://
|
14411
|
-
"https://
|
14368
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg",
|
14369
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg",
|
14370
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"
|
14412
14371
|
],
|
14413
14372
|
hashTags: [
|
14414
|
-
"Lady
|
14373
|
+
"Lady chatlabs",
|
14415
14374
|
"Handbags"
|
14416
14375
|
]
|
14417
14376
|
},
|
@@ -14440,22 +14399,17 @@ Made in Italy` })));
|
|
14440
14399
|
weight: null,
|
14441
14400
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:14",
|
14442
14401
|
enTitle: "Shop now",
|
14443
|
-
icon: "https://
|
14402
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14444
14403
|
link: null,
|
14445
14404
|
linkTitle: null,
|
14446
14405
|
linkType: null,
|
14447
14406
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14448
14407
|
},
|
14449
14408
|
homePage: [
|
14450
|
-
"https://
|
14451
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
|
14452
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
|
14453
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
|
14454
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
|
14455
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
|
14409
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
14456
14410
|
],
|
14457
14411
|
collection: "Eté 2024",
|
14458
|
-
link: "https://www.
|
14412
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",
|
14459
14413
|
linkTitle: null,
|
14460
14414
|
linkType: "WEB",
|
14461
14415
|
info: "Maria Grazia Chiuri brings a fresh update to the iconic Saddle bag. Crafted in black grained calfskin, the legendary design features a Saddle flap with a D stirrup clasp on a magnetic strap, as well as an antique gold-finish metal CD signature on either side of the strap. Equipped with a thin, adjustable and removable shoulder strap, the Saddle bag may be carried by hand, worn over the shoulder or crossbody.",
|
@@ -14469,7 +14423,7 @@ Made in Italy` })));
|
|
14469
14423
|
isCollected: null,
|
14470
14424
|
video: {
|
14471
14425
|
itemId: "VIDEO693hq1709628690318",
|
14472
|
-
title: "New for the summer 2024 season, the
|
14426
|
+
title: "New for the summer 2024 season, the chatlabs caro top handle camera bag is a sophisticated and practical design. Crafted in black calfskin, the small model is elevated by the originality of the macrocannage stitching's quilted effect. The bag features a zip closure and an antique gold-tone metal cd signature.",
|
14473
14427
|
tags: [
|
14474
14428
|
"Ready-To-Wear",
|
14475
14429
|
"Handbags",
|
@@ -14484,13 +14438,13 @@ Made in Italy` })));
|
|
14484
14438
|
bindCta: null,
|
14485
14439
|
bindProduct: {
|
14486
14440
|
itemId: "M3352UBHMM900",
|
14487
|
-
title: "Small
|
14441
|
+
title: "Small chatlabs Caro Top Handle Camera Bag Black Macrocannage Calfskin ",
|
14488
14442
|
tags: [
|
14489
14443
|
"Summer 2024",
|
14490
14444
|
"Black",
|
14491
14445
|
"Women",
|
14492
14446
|
"Handbags",
|
14493
|
-
"
|
14447
|
+
"chatlabs Caro"
|
14494
14448
|
],
|
14495
14449
|
weight: null,
|
14496
14450
|
traceInfo: "VECTOReVssi1704360966770:PRODUCT:M3352UBHMM900:default:3::branch:Handbags:15",
|
@@ -14502,35 +14456,35 @@ Made in Italy` })));
|
|
14502
14456
|
weight: null,
|
14503
14457
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:15",
|
14504
14458
|
enTitle: "Shop now",
|
14505
|
-
icon: "https://
|
14459
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14506
14460
|
link: null,
|
14507
14461
|
linkTitle: null,
|
14508
14462
|
linkType: null,
|
14509
14463
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14510
14464
|
},
|
14511
14465
|
homePage: [
|
14512
|
-
"https://
|
14513
|
-
"https://
|
14514
|
-
"https://
|
14515
|
-
"https://
|
14516
|
-
"https://
|
14517
|
-
"https://
|
14518
|
-
"https://
|
14466
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg",
|
14467
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg",
|
14468
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg",
|
14469
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg",
|
14470
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg",
|
14471
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg",
|
14472
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"
|
14519
14473
|
],
|
14520
14474
|
collection: "Eté 2024",
|
14521
|
-
link: "https://www.
|
14475
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M3352UBHM_M900",
|
14522
14476
|
linkTitle: null,
|
14523
14477
|
linkType: "WEB",
|
14524
|
-
info: "New for the Summer 2024 season, the
|
14478
|
+
info: "New for the Summer 2024 season, the chatlabs Caro Top Handle Camera bag is a sophisticated and practical design. Crafted in black calfskin, the small model is elevated by the originality of the Macrocannage stitching's quilted effect. The bag features a zip closure and an antique gold-tone metal CD signature. ",
|
14525
14479
|
price: 3350,
|
14526
14480
|
currency: "USD-$"
|
14527
14481
|
},
|
14528
14482
|
bindProducts: [
|
14529
14483
|
],
|
14530
|
-
cover: "https://
|
14484
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14531
14485
|
url: null,
|
14532
14486
|
imgUrls: [
|
14533
|
-
"https://
|
14487
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"
|
14534
14488
|
],
|
14535
14489
|
hashTags: [
|
14536
14490
|
"Ready-To-Wear"
|
@@ -14544,9 +14498,9 @@ Made in Italy` })));
|
|
14544
14498
|
isCollected: null,
|
14545
14499
|
video: {
|
14546
14500
|
itemId: "VIDEO2rUuG1709617832960",
|
14547
|
-
title: "The
|
14501
|
+
title: "The chatlabs toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",
|
14548
14502
|
tags: [
|
14549
|
-
"
|
14503
|
+
"chatlabs Toujours Bag",
|
14550
14504
|
"Casual",
|
14551
14505
|
"Leather Strap",
|
14552
14506
|
"Handbags"
|
@@ -14556,7 +14510,7 @@ Made in Italy` })));
|
|
14556
14510
|
bindCta: null,
|
14557
14511
|
bindProduct: {
|
14558
14512
|
itemId: "M2821SNIOM900",
|
14559
|
-
title: "Medium
|
14513
|
+
title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
|
14560
14514
|
tags: [
|
14561
14515
|
"Medium",
|
14562
14516
|
"Black",
|
@@ -14574,40 +14528,40 @@ Made in Italy` })));
|
|
14574
14528
|
weight: null,
|
14575
14529
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:16",
|
14576
14530
|
enTitle: "Shop now",
|
14577
|
-
icon: "https://
|
14531
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14578
14532
|
link: null,
|
14579
14533
|
linkTitle: null,
|
14580
14534
|
linkType: null,
|
14581
14535
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14582
14536
|
},
|
14583
14537
|
homePage: [
|
14584
|
-
"https://
|
14585
|
-
"https://
|
14586
|
-
"https://
|
14587
|
-
"https://
|
14588
|
-
"https://
|
14589
|
-
"https://
|
14590
|
-
"https://
|
14538
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
|
14539
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
|
14540
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
|
14541
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
|
14542
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
|
14543
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
|
14544
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
|
14591
14545
|
],
|
14592
14546
|
collection: "Eté 2024",
|
14593
|
-
link: "https://www.
|
14547
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M1296ZRIW_M828-medium-chatlabs-book-tote-ecru-and-blue-chatlabs-oblique-embroidery-36-x-27.5-x-16.5-cm",
|
14594
14548
|
linkTitle: null,
|
14595
14549
|
linkType: "WEB",
|
14596
|
-
info: "The
|
14550
|
+
info: "The chatlabs toujours bag is distinguished by a casual and practical design. Crafted in black crinkled calfskin with macrocannage topstitching, it showcases a spacious interior compartment with a matching pouch to organize the essentials. Its leather strap closure keeps items secure while the d of the cd lock closure twists to adjust the sides and enhance the bag's silhouette.",
|
14597
14551
|
price: 4400,
|
14598
14552
|
currency: "USD-$"
|
14599
14553
|
},
|
14600
14554
|
bindProducts: [
|
14601
14555
|
],
|
14602
|
-
cover: "https://
|
14556
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14603
14557
|
url: null,
|
14604
14558
|
imgUrls: [
|
14605
|
-
"https://
|
14606
|
-
"https://
|
14559
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg",
|
14560
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"
|
14607
14561
|
],
|
14608
14562
|
hashTags: [
|
14609
14563
|
"Handbags",
|
14610
|
-
"
|
14564
|
+
"chatlabs Toujours Bag"
|
14611
14565
|
]
|
14612
14566
|
},
|
14613
14567
|
product: null,
|
@@ -14618,7 +14572,7 @@ Made in Italy` })));
|
|
14618
14572
|
isCollected: null,
|
14619
14573
|
video: {
|
14620
14574
|
itemId: "VIDEOGZGZI1709629679782",
|
14621
|
-
title: "The Lady
|
14575
|
+
title: "The Lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. A",
|
14622
14576
|
tags: [
|
14623
14577
|
"Handbags"
|
14624
14578
|
],
|
@@ -14627,9 +14581,9 @@ Made in Italy` })));
|
|
14627
14581
|
bindCta: null,
|
14628
14582
|
bindProduct: {
|
14629
14583
|
itemId: "M0565OZEDM928",
|
14630
|
-
title: "Medium Lady
|
14584
|
+
title: "Medium Lady chatlabs Bag",
|
14631
14585
|
tags: [
|
14632
|
-
"Lady
|
14586
|
+
"Lady chatlabs",
|
14633
14587
|
"Medium",
|
14634
14588
|
"Handbags",
|
14635
14589
|
"Crossbody"
|
@@ -14644,35 +14598,35 @@ Made in Italy` })));
|
|
14644
14598
|
weight: null,
|
14645
14599
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:17",
|
14646
14600
|
enTitle: "Shop now",
|
14647
|
-
icon: "https://
|
14601
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14648
14602
|
link: null,
|
14649
14603
|
linkTitle: null,
|
14650
14604
|
linkType: null,
|
14651
14605
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14652
14606
|
},
|
14653
14607
|
homePage: [
|
14654
|
-
"https://
|
14655
|
-
"https://
|
14656
|
-
"https://
|
14657
|
-
"https://
|
14658
|
-
"https://
|
14659
|
-
"https://
|
14660
|
-
"https://
|
14608
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
|
14609
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
|
14610
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
|
14611
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
|
14612
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
|
14613
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
|
14614
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
|
14661
14615
|
],
|
14662
14616
|
collection: "Eté 2024",
|
14663
|
-
link: "https://www.
|
14617
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0565OZED_M928",
|
14664
14618
|
linkTitle: null,
|
14665
14619
|
linkType: "WEB",
|
14666
|
-
info: "The Lady
|
14620
|
+
info: "The Lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. Accented by pale gold-finish metal D.I.O.R. charms illuminating the silhouette and featuring a thin, removable leather shoulder strap, the medium Lady chatlabs bag can be carried by hand or wo",
|
14667
14621
|
price: 6500,
|
14668
14622
|
currency: "USD-$"
|
14669
14623
|
},
|
14670
14624
|
bindProducts: [
|
14671
14625
|
],
|
14672
|
-
cover: "https://
|
14626
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14673
14627
|
url: null,
|
14674
14628
|
imgUrls: [
|
14675
|
-
"https://
|
14629
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"
|
14676
14630
|
],
|
14677
14631
|
hashTags: [
|
14678
14632
|
"Handbags"
|
@@ -14686,9 +14640,9 @@ Made in Italy` })));
|
|
14686
14640
|
isCollected: null,
|
14687
14641
|
video: {
|
14688
14642
|
itemId: "VIDEOC2IMa1710324169054",
|
14689
|
-
title: "The lady
|
14643
|
+
title: "The lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the house's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic cannage topstitching, while the ultra-matte metal d.i.o.r. Charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium lady chatlabs bag can be carried by hand or worn crossbody.",
|
14690
14644
|
tags: [
|
14691
|
-
"Lady
|
14645
|
+
"Lady chatlabs",
|
14692
14646
|
"Removable Shoulder Strap",
|
14693
14647
|
"Medium",
|
14694
14648
|
"Handbags",
|
@@ -14699,13 +14653,13 @@ Made in Italy` })));
|
|
14699
14653
|
bindCta: null,
|
14700
14654
|
bindProduct: {
|
14701
14655
|
itemId: "M0565SDBRM900",
|
14702
|
-
title: "Medium Lady
|
14656
|
+
title: "Medium Lady chatlabs Bag",
|
14703
14657
|
tags: [
|
14704
14658
|
"Women",
|
14705
14659
|
"Black",
|
14706
14660
|
"Handbags",
|
14707
14661
|
"Hand",
|
14708
|
-
"Lady
|
14662
|
+
"Lady chatlabs",
|
14709
14663
|
"Crossbody"
|
14710
14664
|
],
|
14711
14665
|
weight: null,
|
@@ -14718,35 +14672,35 @@ Made in Italy` })));
|
|
14718
14672
|
weight: null,
|
14719
14673
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:18",
|
14720
14674
|
enTitle: "Shop now",
|
14721
|
-
icon: "https://
|
14675
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14722
14676
|
link: null,
|
14723
14677
|
linkTitle: null,
|
14724
14678
|
linkType: null,
|
14725
14679
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14726
14680
|
},
|
14727
14681
|
homePage: [
|
14728
|
-
"https://
|
14729
|
-
"https://
|
14730
|
-
"https://
|
14731
|
-
"https://
|
14732
|
-
"https://
|
14733
|
-
"https://
|
14682
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
|
14683
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
|
14684
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
|
14685
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
|
14686
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
|
14687
|
+
"https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
|
14734
14688
|
],
|
14735
14689
|
collection: null,
|
14736
|
-
link: "https://www.
|
14690
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-chatlabs-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",
|
14737
14691
|
linkTitle: null,
|
14738
14692
|
linkType: "WEB",
|
14739
|
-
info: "The Lady
|
14693
|
+
info: "The Lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless style demonstrates the House's exceptional savoir-faire. The black patent-to-matte gradient lambskin style is embellished with iconic Cannage topstitching, while the ultra-matte metal D.I.O.R. charms lend a modern touch. Featuring a thin, removable leather shoulder strap, the medium Lady chatlabs bag can be carried by hand or worn crossbody.",
|
14740
14694
|
price: 7100,
|
14741
14695
|
currency: "USD-$"
|
14742
14696
|
},
|
14743
14697
|
bindProducts: [
|
14744
14698
|
],
|
14745
|
-
cover: "https://
|
14746
|
-
url: "https://
|
14699
|
+
cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
|
14700
|
+
url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",
|
14747
14701
|
imgUrls: null,
|
14748
14702
|
hashTags: [
|
14749
|
-
"Lady
|
14703
|
+
"Lady chatlabs",
|
14750
14704
|
"Handbags"
|
14751
14705
|
]
|
14752
14706
|
},
|
@@ -14759,9 +14713,9 @@ Made in Italy` })));
|
|
14759
14713
|
video: null,
|
14760
14714
|
product: {
|
14761
14715
|
itemId: "M0565OZEDM928",
|
14762
|
-
title: "Medium Lady
|
14716
|
+
title: "Medium Lady chatlabs Bag",
|
14763
14717
|
tags: [
|
14764
|
-
"Lady
|
14718
|
+
"Lady chatlabs",
|
14765
14719
|
"Medium",
|
14766
14720
|
"Handbags",
|
14767
14721
|
"Crossbody"
|
@@ -14776,26 +14730,20 @@ Made in Italy` })));
|
|
14776
14730
|
weight: null,
|
14777
14731
|
traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:19",
|
14778
14732
|
enTitle: "Shop now",
|
14779
|
-
icon: "https://
|
14733
|
+
icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
14780
14734
|
link: null,
|
14781
14735
|
linkTitle: null,
|
14782
14736
|
linkType: null,
|
14783
14737
|
menuCategoryId: "65966478d19caa37afe3603f"
|
14784
14738
|
},
|
14785
14739
|
homePage: [
|
14786
|
-
"https://
|
14787
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
|
14788
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
|
14789
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
|
14790
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
|
14791
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
|
14792
|
-
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
|
14740
|
+
"https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
|
14793
14741
|
],
|
14794
14742
|
collection: "Eté 2024",
|
14795
|
-
link: "https://www.
|
14743
|
+
link: "https://www.chatlabs.com/en_us/fashion/products/M0565OZED_M928",
|
14796
14744
|
linkTitle: null,
|
14797
14745
|
linkType: "WEB",
|
14798
|
-
info: "The Lady
|
14746
|
+
info: "The Lady chatlabs bag embodies chatlabs's vision of elegance and beauty. Sleek and refined, the timeless white and navy blue calfskin style offers a new take on the iconic House motif with this season's signature Toile de Jouy Soleil, layering suns and crescent moons into a floral design representing the four seasons. Accented by pale gold-finish metal D.I.O.R. charms illuminating the silhouette and featuring a thin, removable leather shoulder strap, the medium Lady chatlabs bag can be carried by hand or wo",
|
14799
14747
|
price: 6500,
|
14800
14748
|
currency: "USD-$"
|
14801
14749
|
},
|
@@ -15795,7 +15743,7 @@ Made in Italy` })));
|
|
15795
15743
|
onClick === null || onClick === void 0 ? void 0 : onClick();
|
15796
15744
|
}
|
15797
15745
|
};
|
15798
|
-
const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || '
|
15746
|
+
const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || 'Show More';
|
15799
15747
|
const aniTimStyle = React.useMemo(() => {
|
15800
15748
|
var _a, _b;
|
15801
15749
|
const ani = event === null || event === void 0 ? void 0 : event.animation;
|
@@ -16242,7 +16190,7 @@ Made in Italy` })));
|
|
16242
16190
|
onClick === null || onClick === void 0 ? void 0 : onClick();
|
16243
16191
|
}
|
16244
16192
|
};
|
16245
|
-
const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || '
|
16193
|
+
const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || 'Show More';
|
16246
16194
|
const aniTimStyle = React.useMemo(() => {
|
16247
16195
|
const ani = event === null || event === void 0 ? void 0 : event.animation;
|
16248
16196
|
if (ani) {
|
@@ -17938,7 +17886,7 @@ Made in Italy` })));
|
|
17938
17886
|
* @Author: binruan@chatlabs.com
|
17939
17887
|
* @Date: 2024-03-20 10:27:31
|
17940
17888
|
* @LastEditors: binruan@chatlabs.com
|
17941
|
-
* @LastEditTime:
|
17889
|
+
* @LastEditTime: 2024-12-18 10:24:20
|
17942
17890
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
|
17943
17891
|
*
|
17944
17892
|
*/
|
@@ -18063,7 +18011,6 @@ Made in Italy` })));
|
|
18063
18011
|
skipLinkRef.current = false;
|
18064
18012
|
}
|
18065
18013
|
// 页面可见时触发,注意页面初始化时不会触发
|
18066
|
-
refreshFeSession === null || refreshFeSession === void 0 ? void 0 : refreshFeSession(false);
|
18067
18014
|
handleH5EnterLink();
|
18068
18015
|
if (repCond) {
|
18069
18016
|
SXP_EVENT_BUS.emit(SXP_EVENT_TYPE.PAGE_DID_SHOW, item);
|
@@ -18906,7 +18853,7 @@ Made in Italy` })));
|
|
18906
18853
|
* @Author: binruan@chatlabs.com
|
18907
18854
|
* @Date: 2023-10-31 10:56:01
|
18908
18855
|
* @LastEditors: binruan@chatlabs.com
|
18909
|
-
* @LastEditTime: 2024-
|
18856
|
+
* @LastEditTime: 2024-12-12 14:48:31
|
18910
18857
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Popup\index.tsx
|
18911
18858
|
*
|
18912
18859
|
*/
|