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.
Files changed (33) hide show
  1. package/dist/index.cjs +256 -309
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.js +256 -309
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.cjs +6 -6
  6. package/dist/index.min.cjs.map +1 -1
  7. package/dist/index.min.js +6 -6
  8. package/dist/index.min.js.map +1 -1
  9. package/dist/pb-ui.js +256 -309
  10. package/dist/pb-ui.js.map +1 -1
  11. package/dist/pb-ui.min.js +6 -6
  12. package/dist/pb-ui.min.js.map +1 -1
  13. package/es/core/components/SxpPageRender/Navbar.js +1 -1
  14. package/es/core/components/SxpPageRender/WaterFall/preview.json +207 -272
  15. package/es/core/components/SxpPageRender/index.js +0 -1
  16. package/es/core/context/SxpDataSourceProvider.js +18 -39
  17. package/es/core/utils/materials.js +3 -5
  18. package/es/materials/sxp/cta/AniLink/index.js +1 -1
  19. package/es/materials/sxp/cta/AniLinkPopup/index.js +1 -1
  20. package/es/materials/sxp/popup/Iframe/index.d.ts +4 -0
  21. package/es/materials/sxp/popup/Iframe/index.js +5 -4
  22. package/es/materials/sxp/popup/Iframe/settingRender.js +15 -0
  23. package/lib/core/components/SxpPageRender/Navbar.js +1 -1
  24. package/lib/core/components/SxpPageRender/WaterFall/preview.json +207 -272
  25. package/lib/core/components/SxpPageRender/index.js +0 -1
  26. package/lib/core/context/SxpDataSourceProvider.js +18 -39
  27. package/lib/core/utils/materials.js +3 -5
  28. package/lib/materials/sxp/cta/AniLink/index.js +1 -1
  29. package/lib/materials/sxp/cta/AniLinkPopup/index.js +1 -1
  30. package/lib/materials/sxp/popup/Iframe/index.d.ts +4 -0
  31. package/lib/materials/sxp/popup/Iframe/index.js +5 -4
  32. package/lib/materials/sxp/popup/Iframe/settingRender.js +15 -0
  33. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -677,15 +677,12 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
677
677
  const bffDataSource = React.useMemo(() => {
678
678
  return dataSources === null || dataSources === void 0 ? void 0 : dataSources.find((d) => d.type === DataSourceType.BFF);
679
679
  }, [dataSources]);
680
- const fakeUserId = React.useMemo(() => {
681
- var _a;
682
- return ((_a = bffDataSource === null || bffDataSource === void 0 ? void 0 : bffDataSource.headers) === null || _a === void 0 ? void 0 : _a['x-app-id']) + storeAndLoadFeUserId();
683
- }, [bffDataSource]);
684
680
  // bff API 请求方法
685
681
  const bffFetch = React.useCallback((path, options) => {
686
682
  if (!bffDataSource)
687
683
  return;
688
684
  const url = bffDataSource.url;
685
+ const fakeUserId = storeAndLoadFeUserId();
689
686
  if (options === null || options === void 0 ? void 0 : options.query) {
690
687
  const queryString = qs.stringify(options.query);
691
688
  path = `${path}?${queryString}`;
@@ -693,19 +690,19 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
693
690
  // 事件上报优化
694
691
  // Beacon API 用于发送异步和非阻塞请求到服务器。这类请求不需要响应。
695
692
  if (options.type === 'beacon' && navigator.sendBeacon) {
696
- return navigator.sendBeacon(`${url}/api/${path}`, new Blob([
693
+ return navigator.sendBeacon(`${url}/api/v1${path}`, new Blob([
697
694
  JSON.stringify(Object.assign(Object.assign(Object.assign({}, options.body), bffDataSource.headers), { 'x-user-id': fakeUserId }))
698
695
  ], { type: 'application/json;charset=UTF-8' }));
699
696
  }
700
697
  return window
701
- .fetch(`${url}/api/${path}`, {
698
+ .fetch(`${url}/api/v1${path}`, {
702
699
  headers: Object.assign({ 'Content-Type': 'application/json', 'x-user-id': fakeUserId }, bffDataSource.headers),
703
700
  method: options.method,
704
701
  body: JSON.stringify(options.body)
705
702
  })
706
703
  .then((res) => res.json())
707
704
  .catch((err) => Promise.reject(err));
708
- }, [bffDataSource, fakeUserId]);
705
+ }, [bffDataSource]);
709
706
  // 获取推荐视频数据
710
707
  const getRecommendVideos = React.useCallback((query) => __awaiter(void 0, void 0, void 0, function* () {
711
708
  var _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
@@ -743,7 +740,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
743
740
  const recurveRecList = (query) => __awaiter(void 0, void 0, void 0, function* () {
744
741
  var _v, _w, _x, _y, _z, _0;
745
742
  query.pageNum = pageNum;
746
- result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/list', { method: 'POST', body: query }));
743
+ result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/list', { method: 'POST', body: query }));
747
744
  if (!(result === null || result === void 0 ? void 0 : result.success)) {
748
745
  return undefined;
749
746
  }
@@ -765,7 +762,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
765
762
  if (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) {
766
763
  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 });
767
764
  }
768
- const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/list', { method: 'POST', body: query }));
765
+ const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/list', { method: 'POST', body: query }));
769
766
  if (!(result === null || result === void 0 ? void 0 : result.success)) {
770
767
  return undefined;
771
768
  }
@@ -815,7 +812,6 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
815
812
  return expire;
816
813
  }, [data]);
817
814
  const bffEventReport = React.useCallback(({ userInfo, eventInfo, reportLayId = true }) => {
818
- var _a;
819
815
  // 关闭 BFF 事件上报
820
816
  if (!enableReportEvent || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview)) {
821
817
  return;
@@ -837,23 +833,14 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
837
833
  console.log('userInfo:', userInfo);
838
834
  console.log('eventInfo:', ef);
839
835
  console.log('========= 结束 =========');
840
- return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch(`v2/event/report/CLD/${(_a = bffDataSource === null || bffDataSource === void 0 ? void 0 : bffDataSource.headers) === null || _a === void 0 ? void 0 : _a['x-app-id']}/${eventInfo === null || eventInfo === void 0 ? void 0 : eventInfo.eventSubject}`, {
836
+ return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/event/report', {
841
837
  method: 'POST',
842
838
  body: { userInfo: realUserInfo, eventInfo: realEventInfo },
843
839
  type: 'beacon'
844
840
  });
845
- }, [
846
- bffFetch,
847
- curReqInfo,
848
- enableReportEvent,
849
- globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview,
850
- layoutVariantId,
851
- globalConfig,
852
- playbookType,
853
- bffDataSource
854
- ]);
841
+ }, [bffFetch, curReqInfo, enableReportEvent, globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview, layoutVariantId, globalConfig, playbookType]);
855
842
  const bffFbReport = React.useCallback(({ eventName, product }) => {
856
- var _a, _b, _c, _d, _e, _f;
843
+ var _a, _b, _c, _d, _e;
857
844
  if (!enableReportEvent ||
858
845
  !enabledMetaConversionApi ||
859
846
  (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) ||
@@ -865,7 +852,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
865
852
  const fbclid = urlParams === null || urlParams === void 0 ? void 0 : urlParams.get('fbclid');
866
853
  const fix_par = {
867
854
  event_source_url: (_c = window === null || window === void 0 ? void 0 : window.location) === null || _c === void 0 ? void 0 : _c.href,
868
- external_id: fakeUserId,
855
+ external_id: storeAndLoadFeUserId(),
869
856
  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 : '',
870
857
  fbc: fbclid ? `fb.2.${new Date().getTime()}.${fbclid}` : '',
871
858
  fbp: getCookie('_fbp') ? `fb.2.${new Date().getTime()}.${getCookie('_fbp')}` : '',
@@ -917,30 +904,22 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
917
904
  }
918
905
  };
919
906
  getEventParams(jsonParams);
920
- return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch(`v2/event/report/FB/${(_f = bffDataSource === null || bffDataSource === void 0 ? void 0 : bffDataSource.headers) === null || _f === void 0 ? void 0 : _f['x-app-id']}/${eventName}`, {
907
+ return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/fb/events', {
921
908
  method: 'POST',
922
909
  body: jsonParams,
923
910
  type: 'beacon'
924
911
  });
925
- }, [
926
- bffFetch,
927
- enableReportEvent,
928
- enabledMetaConversionApi,
929
- globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview,
930
- globalConfig,
931
- fakeUserId,
932
- bffDataSource
933
- ]);
912
+ }, [bffFetch, enableReportEvent, enabledMetaConversionApi, globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview, globalConfig]);
934
913
  const bffMutateLike = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
935
- const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/like', { method: 'POST', body }));
914
+ const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/like', { method: 'POST', body }));
936
915
  return res === null || res === void 0 ? void 0 : res.success;
937
916
  }), [bffFetch]);
938
917
  const bffMutateUnlike = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
939
- const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/unlike', { method: 'POST', body }));
918
+ const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/unlike', { method: 'POST', body }));
940
919
  return res === null || res === void 0 ? void 0 : res.success;
941
920
  }), [bffFetch]);
942
921
  const bffSubmitForm = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
943
- const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/customform', { method: 'POST', body }));
922
+ const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/customform', { method: 'POST', body }));
944
923
  return res === null || res === void 0 ? void 0 : res.success;
945
924
  }), [bffFetch]);
946
925
  // 获取 Tag
@@ -955,7 +934,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
955
934
  const key = val.split('=')[0];
956
935
  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);
957
936
  })) === null || _9 === void 0 ? void 0 : _9.join('&')) !== null && _10 !== void 0 ? _10 : '';
958
- const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/tag/list', { method: 'GET', query: { channel: decodeURIComponent(val) } }));
937
+ const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/tag/list', { method: 'GET', query: { channel: decodeURIComponent(val) } }));
959
938
  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 : []);
960
939
  }
961
940
  catch (e) {
@@ -1029,10 +1008,10 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1029
1008
  let curData;
1030
1009
  let gldata;
1031
1010
  if (data === null || data === void 0 ? void 0 : data.layoutVariantId) {
1032
- layId = data === null || data === void 0 ? void 0 : data.layoutVariantId;
1033
- setLayoutVariantId(data === null || data === void 0 ? void 0 : data.layoutVariantId);
1034
1011
  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];
1035
1012
  if (id) {
1013
+ layId = id;
1014
+ setLayoutVariantId(id);
1036
1015
  curData = dataList === null || dataList === void 0 ? void 0 : dataList.find((item) => (item === null || item === void 0 ? void 0 : item.id) === id);
1037
1016
  if (curData) {
1038
1017
  setPageData(curData);
@@ -10119,7 +10098,7 @@ var CommodityGroup$1 = React.memo(CommodityGroup);
10119
10098
  * @Author: binruan@chatlabs.com
10120
10099
  * @Date: 2024-03-20 14:56:16
10121
10100
  * @LastEditors: binruan@chatlabs.com
10122
- * @LastEditTime: 2024-12-20 14:32:26
10101
+ * @LastEditTime: 2024-10-24 17:51:19
10123
10102
  * @FilePath: \pb-sxp-ui\src\core\utils\materials.ts
10124
10103
  *
10125
10104
  */
@@ -10157,16 +10136,14 @@ const getBgStyle = (imgSrc) => {
10157
10136
  };
10158
10137
  const getPriceText = ({ product, enableFormattedPrice, globalConfig, isHiddenDef, style }) => {
10159
10138
  var _a, _b, _c, _d, _e, _f, _g, _h;
10160
- let text = '';
10161
10139
  if ((!(product === null || product === void 0 ? void 0 : product.currency) || !(product === null || product === void 0 ? void 0 : product.price)) && isHiddenDef)
10162
10140
  return null;
10163
- let price = Number((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);
10164
- if (typeof price !== 'number')
10165
- return text;
10141
+ 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;
10142
+ let text = '';
10166
10143
  let priceSymbol = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.priceSymbol;
10167
10144
  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 : '' : '$';
10168
10145
  const isToLocStr = enableFormattedPrice === undefined || enableFormattedPrice;
10169
- let decPic = price === null || price === void 0 ? void 0 : price.toString();
10146
+ let decPic = price.toString();
10170
10147
  if (priceSymbol === null || priceSymbol === void 0 ? void 0 : priceSymbol.showTwoDecimalPoint) {
10171
10148
  decPic = price === null || price === void 0 ? void 0 : price.toFixed(2);
10172
10149
  }
@@ -11984,7 +11961,7 @@ const CommodityList = createMaterial(CommodityListComponent, {
11984
11961
  * @Author: binruan@chatlabs.com
11985
11962
  * @Date: 2023-10-27 14:06:35
11986
11963
  * @LastEditors: binruan@chatlabs.com
11987
- * @LastEditTime: 2024-08-08 17:32:11
11964
+ * @LastEditTime: 2024-12-12 15:12:57
11988
11965
  * @FilePath: \pb-sxp-ui\src\materials\sxp\popup\Iframe\settingRender.tsx
11989
11966
  *
11990
11967
  */
@@ -11998,16 +11975,32 @@ var settingRender$8 = [
11998
11975
  name: ['style', 'backgroundColor']
11999
11976
  }
12000
11977
  ]
11978
+ },
11979
+ {
11980
+ title: 'iframe',
11981
+ child: [
11982
+ {
11983
+ type: 'TextArea',
11984
+ label: 'url',
11985
+ name: ['props', 'iframe', 'src']
11986
+ },
11987
+ {
11988
+ type: 'TextArea',
11989
+ label: 'allow',
11990
+ name: ['props', 'iframe', 'allow']
11991
+ }
11992
+ ]
12001
11993
  }
12002
11994
  ];
12003
11995
 
12004
11996
  const Iframe$1 = (_a) => {
12005
11997
  var _b, _c;
12006
- 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"]);
11998
+ 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"]);
12007
11999
  const { popupDetailData } = useSxpDataSource();
12008
- const iframeUrl = (_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;
12009
- return (React.createElement("div", Object.assign({ className: `${css.css(Object.assign({}, style))}` }, props),
12010
- React.createElement("iframe", { src: iframeUrl, style: {
12000
+ const { src, allow } = iframe || {};
12001
+ 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);
12002
+ return (React.createElement("div", Object.assign({ className: `${css.css(Object.assign(Object.assign({}, style), { overflow: 'hidden' }))}` }, props),
12003
+ React.createElement("iframe", { src: iframeUrl, allow: allow, scrolling: 'no', style: {
12011
12004
  width: '100%',
12012
12005
  height: 'calc(100% - 50px)',
12013
12006
  marginTop: '50px',
@@ -13521,7 +13514,7 @@ var settingRender$5 = [
13521
13514
  * @Author: binruan@chatlabs.com
13522
13515
  * @Date: 2023-12-26 16:11:34
13523
13516
  * @LastEditors: binruan@chatlabs.com
13524
- * @LastEditTime: 2024-10-11 18:22:21
13517
+ * @LastEditTime: 2025-01-17 18:55:14
13525
13518
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Navbar.tsx
13526
13519
  *
13527
13520
  */
@@ -13532,7 +13525,7 @@ const Navbar = ({ icon, styles, textStyle, onClose }) => {
13532
13525
  React.createElement("button", { className: 'clc-sxp-nav-left', role: 'button', "aria-label": 'back button', onClick: onClose },
13533
13526
  React.createElement("img", { src: icon, alt: 'back button' })),
13534
13527
  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: {
13535
- __html: setFontForText(`#${(_a = waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag) !== null && _a !== void 0 ? _a : '标题'}`, textStyle)
13528
+ __html: setFontForText(`#${(_a = waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag) !== null && _a !== void 0 ? _a : 'title'}`, textStyle)
13536
13529
  } })));
13537
13530
  };
13538
13531
  var Navbar$1 = React.memo(Navbar);
@@ -13542,7 +13535,7 @@ var requestId = "3d989325-e7d6-4a74-8a97-98febdf5b567";
13542
13535
  var channel = null;
13543
13536
  var rtc = null;
13544
13537
  var tag = {
13545
- info: "The dior 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.",
13538
+ 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.",
13546
13539
  link: "www.baidu.com",
13547
13540
  linkTitle: null,
13548
13541
  linkType: "WEB"
@@ -13553,9 +13546,9 @@ var recList = [
13553
13546
  isCollected: null,
13554
13547
  video: {
13555
13548
  itemId: "VIDEOY2BMu1710323630175",
13556
- title: "A symbol of excellence, the Dior Toujours bag is reinterpreted in an unprecedented version. For the Dior 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 Dior Ateliers.",
13549
+ 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.",
13557
13550
  tags: [
13558
- "Dior Toujours Bag",
13551
+ "chatlabs Toujours Bag",
13559
13552
  "Casual",
13560
13553
  "Leather Strap",
13561
13554
  "Handbags"
@@ -13565,7 +13558,7 @@ var recList = [
13565
13558
  bindCta: null,
13566
13559
  bindProduct: {
13567
13560
  itemId: "M2821SNIOM900",
13568
- title: "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
13561
+ title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
13569
13562
  tags: [
13570
13563
  "Medium",
13571
13564
  "Black",
@@ -13583,36 +13576,36 @@ var recList = [
13583
13576
  weight: null,
13584
13577
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:0",
13585
13578
  enTitle: "Shop now",
13586
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13579
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13587
13580
  link: null,
13588
13581
  linkTitle: null,
13589
13582
  linkType: null,
13590
13583
  menuCategoryId: "65966478d19caa37afe3603f"
13591
13584
  },
13592
13585
  homePage: [
13593
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
13594
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
13595
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
13596
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
13597
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
13598
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
13599
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
13586
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
13587
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
13588
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
13589
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
13590
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
13591
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
13592
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
13600
13593
  ],
13601
13594
  collection: "Eté 2024",
13602
- link: "https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",
13595
+ 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",
13603
13596
  linkTitle: null,
13604
13597
  linkType: "WEB",
13605
- info: "The dior 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.",
13598
+ 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.",
13606
13599
  price: 4400,
13607
13600
  currency: "USD-$"
13608
13601
  },
13609
13602
  bindProducts: [
13610
13603
  ],
13611
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fswbY3wT0hCmrYkrqDzFKnHb3NMux1710323481052.png",
13612
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",
13604
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13605
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",
13613
13606
  imgUrls: null,
13614
13607
  hashTags: [
13615
- "Dior Toujours Bag",
13608
+ "chatlabs Toujours Bag",
13616
13609
  "Casual",
13617
13610
  "Leather Strap",
13618
13611
  "Handbags"
@@ -13626,18 +13619,18 @@ var recList = [
13626
13619
  isCollected: null,
13627
13620
  video: {
13628
13621
  itemId: "VIDEO6JCOb1710323364018",
13629
- title: "Maria grazia chiuri's hallmark dior book tote offers an original take on elegance. Unveiled at the cruise 2024 fashion show, the refined style showcases the iconic blue dior oblique embroidery and calfskin. Designed to keep all the daily essentials organized, the interior is equipped with a zipped pocket and patch pockets.",
13622
+ 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.",
13630
13623
  tags: [
13631
13624
  "Handbags",
13632
13625
  "Manufacturing Craftsmanship",
13633
- "Dior Book Tote"
13626
+ "chatlabs Book Tote"
13634
13627
  ],
13635
13628
  weight: null,
13636
13629
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEO6JCOb1710323364018:default:3::branch:Handbags:1",
13637
13630
  bindCta: null,
13638
13631
  bindProduct: {
13639
13632
  itemId: "M1296ZRIWM828",
13640
- title: "Medium Dior Book Tote",
13633
+ title: "Medium chatlabs Book Tote",
13641
13634
  tags: [
13642
13635
  "Maria Grazia Chiuri",
13643
13636
  "Hand",
@@ -13656,34 +13649,34 @@ var recList = [
13656
13649
  weight: null,
13657
13650
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:1",
13658
13651
  enTitle: "Shop now",
13659
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13652
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13660
13653
  link: null,
13661
13654
  linkTitle: null,
13662
13655
  linkType: null,
13663
13656
  menuCategoryId: "65966478d19caa37afe3603f"
13664
13657
  },
13665
13658
  homePage: [
13666
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13667
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13668
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13669
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13659
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13660
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13661
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13662
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13670
13663
  ],
13671
13664
  collection: "Eté 2024",
13672
- link: "https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",
13665
+ 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",
13673
13666
  linkTitle: null,
13674
13667
  linkType: "WEB",
13675
- info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior 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.",
13668
+ 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.",
13676
13669
  price: 3350,
13677
13670
  currency: "USD-$"
13678
13671
  },
13679
13672
  bindProducts: [
13680
13673
  ],
13681
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsAHlkdbqYj5F84o2faRzU1E3AvG11710323339209.png",
13682
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",
13674
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13675
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",
13683
13676
  imgUrls: null,
13684
13677
  hashTags: [
13685
13678
  "Handbags",
13686
- "Dior Book Tote"
13679
+ "chatlabs Book Tote"
13687
13680
  ]
13688
13681
  },
13689
13682
  product: null,
@@ -13695,13 +13688,13 @@ var recList = [
13695
13688
  video: null,
13696
13689
  product: {
13697
13690
  itemId: "M2820OTKVM911",
13698
- title: "Large Dior Toujours Bag Black Cannage Tweed",
13691
+ title: "Large chatlabs Toujours Bag Black Cannage Tweed",
13699
13692
  tags: [
13700
13693
  "Black",
13701
13694
  "Women",
13702
13695
  "Handbags",
13703
13696
  "Bucket Bag",
13704
- "Dior Toujours Bag"
13697
+ "chatlabs Toujours Bag"
13705
13698
  ],
13706
13699
  weight: null,
13707
13700
  traceInfo: "VECTOReVssi1704360966770:PRODUCT:M2820OTKVM911:default:3::branch:Handbags:2",
@@ -13713,26 +13706,20 @@ var recList = [
13713
13706
  weight: null,
13714
13707
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:2",
13715
13708
  enTitle: "Shop now",
13716
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13709
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13717
13710
  link: null,
13718
13711
  linkTitle: null,
13719
13712
  linkType: null,
13720
13713
  menuCategoryId: "65966478d19caa37afe3603f"
13721
13714
  },
13722
13715
  homePage: [
13723
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsJTjyFchOFEJSTRYxXvL2XPU1dP61710238469418.jpg",
13724
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fstdFA1dFT55QjtQPU2qHNENo5peF1710836061716.jpg",
13725
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fs9xf8AlIApbHezVL3BsxjUGIrN231710836061181.jpg",
13726
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs9iZ20MjLAPkXmFKvD8HzhLaBJ671710238470272.jpg",
13727
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsSSodev3wicDfE1DYNWPQVeRjErt1710238464035.jpg",
13728
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs3YAOuN6Pd9NFvH1Rdooj6eLI18S1710238465296.jpg",
13729
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsBwIEp6OzI49isvHgiKD0cPSFtrD1710238459007.jpg"
13716
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13730
13717
  ],
13731
13718
  collection: "Eté 2024",
13732
- link: "https://www.dior.com/en_us/fashion/products/M2820OTKV_M911-large-dior-toujours-bag",
13719
+ link: "https://www.chatlabs.com/en_us/fashion/products/M2820OTKV_M911-large-chatlabs-toujours-bag",
13733
13720
  linkTitle: null,
13734
13721
  linkType: "WEB",
13735
- info: "The dior 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.",
13722
+ 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.",
13736
13723
  price: 4200,
13737
13724
  currency: "USD-$"
13738
13725
  },
@@ -13774,22 +13761,17 @@ var recList = [
13774
13761
  weight: null,
13775
13762
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:3",
13776
13763
  enTitle: "Shop now",
13777
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13764
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13778
13765
  link: null,
13779
13766
  linkTitle: null,
13780
13767
  linkType: null,
13781
13768
  menuCategoryId: "65966478d19caa37afe3603f"
13782
13769
  },
13783
13770
  homePage: [
13784
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
13785
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
13786
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
13787
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
13788
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
13789
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
13771
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13790
13772
  ],
13791
13773
  collection: "Eté 2024",
13792
- link: "https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",
13774
+ 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",
13793
13775
  linkTitle: null,
13794
13776
  linkType: "WEB",
13795
13777
  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.",
@@ -13798,10 +13780,10 @@ var recList = [
13798
13780
  },
13799
13781
  bindProducts: [
13800
13782
  ],
13801
- cover: null,
13783
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13802
13784
  url: null,
13803
13785
  imgUrls: [
13804
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"
13786
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"
13805
13787
  ],
13806
13788
  hashTags: [
13807
13789
  "Maria Grazia Chiuri",
@@ -13818,7 +13800,7 @@ var recList = [
13818
13800
  video: null,
13819
13801
  product: {
13820
13802
  itemId: "S5909CTZQM928",
13821
- title: "Saddle Shoulder Pouch Blue Dior Oblique Jacquard ",
13803
+ title: "Saddle Shoulder Pouch Blue chatlabs Oblique Jacquard ",
13822
13804
  tags: [
13823
13805
  "Saddle Bags",
13824
13806
  "Handbags",
@@ -13836,20 +13818,17 @@ var recList = [
13836
13818
  weight: null,
13837
13819
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:4",
13838
13820
  enTitle: "Shop now",
13839
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13821
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13840
13822
  link: null,
13841
13823
  linkTitle: null,
13842
13824
  linkType: null,
13843
13825
  menuCategoryId: "65966478d19caa37afe3603f"
13844
13826
  },
13845
13827
  homePage: [
13846
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs34CpwKJOyjEDgoHypoLYakF8oR31710316280669.png",
13847
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsLOSOEf9pmz7wKnFaifWNw3TZ7Gy1710316287874.png",
13848
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsWHmVcrzHKKj6EfhfnQkxYIOt20a1710316295683.png",
13849
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fslyBNMyQwjpjY4EKzyrqzTMlOGRQ1710316313161.png"
13828
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13850
13829
  ],
13851
13830
  collection: "Eté 2024",
13852
- link: "https://www.dior.com/en_us/fashion/products/S5909CTZQ",
13831
+ link: "https://www.chatlabs.com/en_us/fashion/products/S5909CTZQ",
13853
13832
  linkTitle: null,
13854
13833
  linkType: "WEB",
13855
13834
  info: null,
@@ -13863,17 +13842,17 @@ var recList = [
13863
13842
  isCollected: null,
13864
13843
  video: {
13865
13844
  itemId: "VIDEOrZguC1710324513737",
13866
- title: "Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior 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.",
13845
+ 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.",
13867
13846
  tags: [
13868
13847
  "Handbags",
13869
- "Dior Book Tote"
13848
+ "chatlabs Book Tote"
13870
13849
  ],
13871
13850
  weight: null,
13872
13851
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOrZguC1710324513737:default:3::branch:Handbags:5",
13873
13852
  bindCta: null,
13874
13853
  bindProduct: {
13875
13854
  itemId: "M1296ZRIWM828",
13876
- title: "Medium Dior Book Tote",
13855
+ title: "Medium chatlabs Book Tote",
13877
13856
  tags: [
13878
13857
  "Maria Grazia Chiuri",
13879
13858
  "Hand",
@@ -13892,34 +13871,31 @@ var recList = [
13892
13871
  weight: null,
13893
13872
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:5",
13894
13873
  enTitle: "Shop now",
13895
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13874
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13896
13875
  link: null,
13897
13876
  linkTitle: null,
13898
13877
  linkType: null,
13899
13878
  menuCategoryId: "65966478d19caa37afe3603f"
13900
13879
  },
13901
13880
  homePage: [
13902
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13903
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13904
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13905
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13881
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13906
13882
  ],
13907
13883
  collection: "Eté 2024",
13908
- link: "https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",
13884
+ 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",
13909
13885
  linkTitle: null,
13910
13886
  linkType: "WEB",
13911
- info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior 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.",
13887
+ 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.",
13912
13888
  price: 3350,
13913
13889
  currency: "USD-$"
13914
13890
  },
13915
13891
  bindProducts: [
13916
13892
  ],
13917
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fstXNWStczbY8HbIKEqMwfCkv5CI51710324494939.png",
13918
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",
13893
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13894
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",
13919
13895
  imgUrls: null,
13920
13896
  hashTags: [
13921
13897
  "Handbags",
13922
- "Dior Book Tote"
13898
+ "chatlabs Book Tote"
13923
13899
  ]
13924
13900
  },
13925
13901
  product: null,
@@ -13931,7 +13907,7 @@ var recList = [
13931
13907
  video: null,
13932
13908
  product: {
13933
13909
  itemId: "M1296ZRIWM828",
13934
- title: "Medium Dior Book Tote",
13910
+ title: "Medium chatlabs Book Tote",
13935
13911
  tags: [
13936
13912
  "Maria Grazia Chiuri",
13937
13913
  "Hand",
@@ -13950,23 +13926,20 @@ var recList = [
13950
13926
  weight: null,
13951
13927
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:6",
13952
13928
  enTitle: "Shop now",
13953
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13929
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13954
13930
  link: null,
13955
13931
  linkTitle: null,
13956
13932
  linkType: null,
13957
13933
  menuCategoryId: "65966478d19caa37afe3603f"
13958
13934
  },
13959
13935
  homePage: [
13960
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13961
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13962
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13963
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13936
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13964
13937
  ],
13965
13938
  collection: "Eté 2024",
13966
- link: "https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",
13939
+ 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",
13967
13940
  linkTitle: null,
13968
13941
  linkType: "WEB",
13969
- info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior 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.",
13942
+ 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.",
13970
13943
  price: 3350,
13971
13944
  currency: "USD-$"
13972
13945
  },
@@ -13977,13 +13950,13 @@ var recList = [
13977
13950
  isCollected: null,
13978
13951
  video: {
13979
13952
  itemId: "VIDEOEtr621710300614047",
13980
- title: "Unveiled at the spring-summer 2023 fashion show, the dior 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",
13953
+ 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",
13981
13954
  tags: [
13982
13955
  "Handbags",
13983
13956
  "Leather Strap",
13984
13957
  "Spring-Summer 2024 Fashion Show",
13985
13958
  "Backstage",
13986
- "Dior Toujours Bag"
13959
+ "chatlabs Toujours Bag"
13987
13960
  ],
13988
13961
  weight: null,
13989
13962
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOEtr621710300614047:default:3::branch:Handbags:7",
@@ -13991,16 +13964,16 @@ var recList = [
13991
13964
  bindProduct: null,
13992
13965
  bindProducts: [
13993
13966
  ],
13994
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fshkOldZwfsSqTgvxHJzNBwS66ySc1710300910103.jpg",
13967
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13995
13968
  url: null,
13996
13969
  imgUrls: [
13997
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"
13970
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"
13998
13971
  ],
13999
13972
  hashTags: [
14000
13973
  "Backstage",
14001
13974
  "Handbags",
14002
13975
  "Spring-Summer 2024 Fashion Show",
14003
- "Dior Toujours Bag"
13976
+ "chatlabs Toujours Bag"
14004
13977
  ]
14005
13978
  },
14006
13979
  product: null,
@@ -14011,21 +13984,21 @@ var recList = [
14011
13984
  isCollected: null,
14012
13985
  video: {
14013
13986
  itemId: "VIDEOO8Zjt1709616802987",
14014
- title: "Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior 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.",
13987
+ 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.",
14015
13988
  tags: [
14016
13989
  "Blue",
14017
13990
  "Medium",
14018
13991
  "Shoulder",
14019
13992
  "Hand",
14020
13993
  "Handbags",
14021
- "Dior Book Tote"
13994
+ "chatlabs Book Tote"
14022
13995
  ],
14023
13996
  weight: null,
14024
13997
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOO8Zjt1709616802987:default:3::branch:Handbags:8",
14025
13998
  bindCta: null,
14026
13999
  bindProduct: {
14027
14000
  itemId: "M1296ZRIWM828",
14028
- title: "Medium Dior Book Tote",
14001
+ title: "Medium chatlabs Book Tote",
14029
14002
  tags: [
14030
14003
  "Maria Grazia Chiuri",
14031
14004
  "Hand",
@@ -14044,35 +14017,32 @@ var recList = [
14044
14017
  weight: null,
14045
14018
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:8",
14046
14019
  enTitle: "Shop now",
14047
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14020
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14048
14021
  link: null,
14049
14022
  linkTitle: null,
14050
14023
  linkType: null,
14051
14024
  menuCategoryId: "65966478d19caa37afe3603f"
14052
14025
  },
14053
14026
  homePage: [
14054
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
14055
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
14056
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
14057
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
14027
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14058
14028
  ],
14059
14029
  collection: "Eté 2024",
14060
- link: "https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",
14030
+ 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",
14061
14031
  linkTitle: null,
14062
14032
  linkType: "WEB",
14063
- info: "Introduced by Maria Grazia Chiuri, Creative Director of Christian Dior, the Dior Book Tote has become a staple of the Dior aesthetic. Designed to hold all the daily essentials, the style is fully embroidered with the ecru and blue Dior Oblique motif. Adorned with the Christian Dior 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.",
14033
+ 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.",
14064
14034
  price: 3350,
14065
14035
  currency: "USD-$"
14066
14036
  },
14067
14037
  bindProducts: [
14068
14038
  ],
14069
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsmS72zfInwmblYTnuYzRuZKAOlhr1709616742898.jpg",
14039
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14070
14040
  url: null,
14071
14041
  imgUrls: [
14072
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"
14042
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"
14073
14043
  ],
14074
14044
  hashTags: [
14075
- "Dior Book Tote",
14045
+ "chatlabs Book Tote",
14076
14046
  "Handbags"
14077
14047
  ]
14078
14048
  },
@@ -14085,7 +14055,7 @@ var recList = [
14085
14055
  video: null,
14086
14056
  product: {
14087
14057
  itemId: "M2821SNIOM900",
14088
- title: "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
14058
+ title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
14089
14059
  tags: [
14090
14060
  "Medium",
14091
14061
  "Black",
@@ -14103,26 +14073,20 @@ var recList = [
14103
14073
  weight: null,
14104
14074
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:9",
14105
14075
  enTitle: "Shop now",
14106
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14076
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14107
14077
  link: null,
14108
14078
  linkTitle: null,
14109
14079
  linkType: null,
14110
14080
  menuCategoryId: "65966478d19caa37afe3603f"
14111
14081
  },
14112
14082
  homePage: [
14113
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
14114
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
14115
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
14116
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
14117
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
14118
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
14119
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
14083
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14120
14084
  ],
14121
14085
  collection: "Eté 2024",
14122
- link: "https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",
14086
+ 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",
14123
14087
  linkTitle: null,
14124
14088
  linkType: "WEB",
14125
- info: "The dior 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.",
14089
+ 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.",
14126
14090
  price: 4400,
14127
14091
  currency: "USD-$"
14128
14092
  },
@@ -14133,9 +14097,9 @@ var recList = [
14133
14097
  isCollected: null,
14134
14098
  video: {
14135
14099
  itemId: "VIDEOesZlV1710323980494",
14136
- title: "The lady dior bag embodies dior'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 dior bag can be carried by hand or worn crossbody.",
14100
+ 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.",
14137
14101
  tags: [
14138
- "Lady Dior",
14102
+ "Lady chatlabs",
14139
14103
  "Removable Shoulder Strap",
14140
14104
  "Medium",
14141
14105
  "Handbags",
@@ -14146,13 +14110,13 @@ var recList = [
14146
14110
  bindCta: null,
14147
14111
  bindProduct: {
14148
14112
  itemId: "M0565SDBRM900",
14149
- title: "Medium Lady Dior Bag",
14113
+ title: "Medium Lady chatlabs Bag",
14150
14114
  tags: [
14151
14115
  "Women",
14152
14116
  "Black",
14153
14117
  "Handbags",
14154
14118
  "Hand",
14155
- "Lady Dior",
14119
+ "Lady chatlabs",
14156
14120
  "Crossbody"
14157
14121
  ],
14158
14122
  weight: null,
@@ -14165,35 +14129,30 @@ var recList = [
14165
14129
  weight: null,
14166
14130
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:10",
14167
14131
  enTitle: "Shop now",
14168
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14132
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14169
14133
  link: null,
14170
14134
  linkTitle: null,
14171
14135
  linkType: null,
14172
14136
  menuCategoryId: "65966478d19caa37afe3603f"
14173
14137
  },
14174
14138
  homePage: [
14175
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14176
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14177
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14178
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14179
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14180
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14139
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14181
14140
  ],
14182
14141
  collection: null,
14183
- link: "https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",
14142
+ 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",
14184
14143
  linkTitle: null,
14185
14144
  linkType: "WEB",
14186
- info: "The Lady Dior bag embodies Dior'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 Dior bag can be carried by hand or worn crossbody.",
14145
+ 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.",
14187
14146
  price: 7100,
14188
14147
  currency: "USD-$"
14189
14148
  },
14190
14149
  bindProducts: [
14191
14150
  ],
14192
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsiwMQ88zO5Xdnl939krMyBMbz7Js1710323763013.png",
14193
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",
14151
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14152
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",
14194
14153
  imgUrls: null,
14195
14154
  hashTags: [
14196
- "Lady Dior",
14155
+ "Lady chatlabs",
14197
14156
  "Handbags"
14198
14157
  ]
14199
14158
  },
@@ -14205,10 +14164,10 @@ var recList = [
14205
14164
  isCollected: null,
14206
14165
  video: {
14207
14166
  itemId: "VIDEOdvsXq1710324342942",
14208
- title: "New for summer 2024, the lady d-sire my abcdior bag draws inspiration from the signature elegance of the lady dior 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.",
14167
+ 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.",
14209
14168
  tags: [
14210
14169
  "Summer 2024",
14211
- "Lady Dior",
14170
+ "Lady chatlabs",
14212
14171
  "Casual",
14213
14172
  "Lightweight",
14214
14173
  "Medium",
@@ -14219,11 +14178,11 @@ var recList = [
14219
14178
  bindCta: null,
14220
14179
  bindProduct: {
14221
14180
  itemId: "M1151OTRLM900",
14222
- title: "Medium Lady D-Sire My ABCDior Bag",
14181
+ title: "Medium Lady D-Sire My ABCchatlabs Bag",
14223
14182
  tags: [
14224
14183
  "Handbags",
14225
14184
  "Summer 2024",
14226
- "Lady Dior",
14185
+ "Lady chatlabs",
14227
14186
  "Black",
14228
14187
  "Medium",
14229
14188
  "Women",
@@ -14239,36 +14198,36 @@ var recList = [
14239
14198
  weight: null,
14240
14199
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:11",
14241
14200
  enTitle: "Shop now",
14242
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14201
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14243
14202
  link: null,
14244
14203
  linkTitle: null,
14245
14204
  linkType: null,
14246
14205
  menuCategoryId: "65966478d19caa37afe3603f"
14247
14206
  },
14248
14207
  homePage: [
14249
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg",
14250
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg",
14251
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg",
14252
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg",
14253
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg",
14254
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"
14208
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg",
14209
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg",
14210
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg",
14211
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg",
14212
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg",
14213
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"
14255
14214
  ],
14256
14215
  collection: null,
14257
- link: "https://www.dior.com/en_us/fashion/products/M1151OTRL_M900-medium-lady-d-sire-my-abcdior-bag-black-bull-leather?objectID=M1151OTRL_M900&query=M1151OTRLM900&queryID=e82938220687c425c75277a7c526b932",
14216
+ 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",
14258
14217
  linkTitle: null,
14259
14218
  linkType: "WEB",
14260
- info: "New for Summer 2024, the Lady D-Sire My ABCDior bag draws inspiration from the signature elegance of the Lady Dior 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",
14219
+ 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",
14261
14220
  price: 6100,
14262
14221
  currency: "USD-$"
14263
14222
  },
14264
14223
  bindProducts: [
14265
14224
  ],
14266
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOsdUSXr57U5Twhhkv17th3yHqBJ1710324292456.png",
14267
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",
14225
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14226
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",
14268
14227
  imgUrls: null,
14269
14228
  hashTags: [
14270
14229
  "Summer 2024",
14271
- "Lady Dior",
14230
+ "Lady chatlabs",
14272
14231
  "Handbags"
14273
14232
  ]
14274
14233
  },
@@ -14311,22 +14270,22 @@ var recList = [
14311
14270
  weight: null,
14312
14271
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:12",
14313
14272
  enTitle: "Shop now",
14314
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14273
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14315
14274
  link: null,
14316
14275
  linkTitle: null,
14317
14276
  linkType: null,
14318
14277
  menuCategoryId: "65966478d19caa37afe3603f"
14319
14278
  },
14320
14279
  homePage: [
14321
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
14322
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
14323
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
14324
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
14325
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
14326
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
14280
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
14281
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
14282
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
14283
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
14284
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
14285
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
14327
14286
  ],
14328
14287
  collection: "Eté 2024",
14329
- link: "https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",
14288
+ 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",
14330
14289
  linkTitle: null,
14331
14290
  linkType: "WEB",
14332
14291
  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.",
@@ -14335,8 +14294,8 @@ var recList = [
14335
14294
  },
14336
14295
  bindProducts: [
14337
14296
  ],
14338
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsqwogfFahvNml7vmATxwfKLcNlh91710324602536.png",
14339
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",
14297
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14298
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",
14340
14299
  imgUrls: null,
14341
14300
  hashTags: [
14342
14301
  "Maria Grazia Chiuri",
@@ -14352,12 +14311,12 @@ var recList = [
14352
14311
  isCollected: null,
14353
14312
  video: {
14354
14313
  itemId: "VIDEOvqhF71709609258469",
14355
- title: "The lady dior bag embodies dior'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 dior bag can be carried by hand or worn crossbody.",
14314
+ 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.",
14356
14315
  tags: [
14357
14316
  "Thin",
14358
14317
  "Removable Shoulder Strap",
14359
14318
  "Medium",
14360
- "Lady Dior",
14319
+ "Lady chatlabs",
14361
14320
  "Crossbody",
14362
14321
  "Handbags",
14363
14322
  "Cross-body & Shoulder Bags"
@@ -14367,13 +14326,13 @@ var recList = [
14367
14326
  bindCta: null,
14368
14327
  bindProduct: {
14369
14328
  itemId: "M0565SDBRM900",
14370
- title: "Medium Lady Dior Bag",
14329
+ title: "Medium Lady chatlabs Bag",
14371
14330
  tags: [
14372
14331
  "Women",
14373
14332
  "Black",
14374
14333
  "Handbags",
14375
14334
  "Hand",
14376
- "Lady Dior",
14335
+ "Lady chatlabs",
14377
14336
  "Crossbody"
14378
14337
  ],
14379
14338
  weight: null,
@@ -14386,39 +14345,39 @@ var recList = [
14386
14345
  weight: null,
14387
14346
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:13",
14388
14347
  enTitle: "Shop now",
14389
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14348
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14390
14349
  link: null,
14391
14350
  linkTitle: null,
14392
14351
  linkType: null,
14393
14352
  menuCategoryId: "65966478d19caa37afe3603f"
14394
14353
  },
14395
14354
  homePage: [
14396
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14397
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14398
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14399
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14400
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14401
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14355
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14356
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14357
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14358
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14359
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14360
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14402
14361
  ],
14403
14362
  collection: null,
14404
- link: "https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",
14363
+ 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",
14405
14364
  linkTitle: null,
14406
14365
  linkType: "WEB",
14407
- info: "The Lady Dior bag embodies Dior'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 Dior bag can be carried by hand or worn crossbody.",
14366
+ 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.",
14408
14367
  price: 7100,
14409
14368
  currency: "USD-$"
14410
14369
  },
14411
14370
  bindProducts: [
14412
14371
  ],
14413
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsHmNyOcNdgB9Y8aIFYWCHlEZVl4x1709608981919.jpg",
14372
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14414
14373
  url: null,
14415
14374
  imgUrls: [
14416
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg",
14417
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg",
14418
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"
14375
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg",
14376
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg",
14377
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"
14419
14378
  ],
14420
14379
  hashTags: [
14421
- "Lady Dior",
14380
+ "Lady chatlabs",
14422
14381
  "Handbags"
14423
14382
  ]
14424
14383
  },
@@ -14447,22 +14406,17 @@ var recList = [
14447
14406
  weight: null,
14448
14407
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:14",
14449
14408
  enTitle: "Shop now",
14450
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14409
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14451
14410
  link: null,
14452
14411
  linkTitle: null,
14453
14412
  linkType: null,
14454
14413
  menuCategoryId: "65966478d19caa37afe3603f"
14455
14414
  },
14456
14415
  homePage: [
14457
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
14458
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
14459
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
14460
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
14461
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
14462
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
14416
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14463
14417
  ],
14464
14418
  collection: "Eté 2024",
14465
- link: "https://www.dior.com/en_us/fashion/products/M0455CBAA_M900-saddle-bag-with-strap-black-grained-calfskin?objectID=M0455CBAA_M900&query=M0455CBAAM900&queryID=c171c63e69d6d109953e2de631718496",
14419
+ 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",
14466
14420
  linkTitle: null,
14467
14421
  linkType: "WEB",
14468
14422
  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.",
@@ -14476,7 +14430,7 @@ var recList = [
14476
14430
  isCollected: null,
14477
14431
  video: {
14478
14432
  itemId: "VIDEO693hq1709628690318",
14479
- title: "New for the summer 2024 season, the dior 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.",
14433
+ 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.",
14480
14434
  tags: [
14481
14435
  "Ready-To-Wear",
14482
14436
  "Handbags",
@@ -14491,13 +14445,13 @@ var recList = [
14491
14445
  bindCta: null,
14492
14446
  bindProduct: {
14493
14447
  itemId: "M3352UBHMM900",
14494
- title: "Small Dior Caro Top Handle Camera Bag Black Macrocannage Calfskin ",
14448
+ title: "Small chatlabs Caro Top Handle Camera Bag Black Macrocannage Calfskin ",
14495
14449
  tags: [
14496
14450
  "Summer 2024",
14497
14451
  "Black",
14498
14452
  "Women",
14499
14453
  "Handbags",
14500
- "Dior Caro"
14454
+ "chatlabs Caro"
14501
14455
  ],
14502
14456
  weight: null,
14503
14457
  traceInfo: "VECTOReVssi1704360966770:PRODUCT:M3352UBHMM900:default:3::branch:Handbags:15",
@@ -14509,35 +14463,35 @@ var recList = [
14509
14463
  weight: null,
14510
14464
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:15",
14511
14465
  enTitle: "Shop now",
14512
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14466
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14513
14467
  link: null,
14514
14468
  linkTitle: null,
14515
14469
  linkType: null,
14516
14470
  menuCategoryId: "65966478d19caa37afe3603f"
14517
14471
  },
14518
14472
  homePage: [
14519
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg",
14520
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg",
14521
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg",
14522
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg",
14523
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg",
14524
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg",
14525
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"
14473
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg",
14474
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg",
14475
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg",
14476
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg",
14477
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg",
14478
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg",
14479
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"
14526
14480
  ],
14527
14481
  collection: "Eté 2024",
14528
- link: "https://www.dior.com/en_us/fashion/products/M3352UBHM_M900",
14482
+ link: "https://www.chatlabs.com/en_us/fashion/products/M3352UBHM_M900",
14529
14483
  linkTitle: null,
14530
14484
  linkType: "WEB",
14531
- info: "New for the Summer 2024 season, the Dior 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. ",
14485
+ 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. ",
14532
14486
  price: 3350,
14533
14487
  currency: "USD-$"
14534
14488
  },
14535
14489
  bindProducts: [
14536
14490
  ],
14537
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsZhMDVzP6kuh9Qt86c11whAMglMU1709628656988.jpg",
14491
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14538
14492
  url: null,
14539
14493
  imgUrls: [
14540
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"
14494
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"
14541
14495
  ],
14542
14496
  hashTags: [
14543
14497
  "Ready-To-Wear"
@@ -14551,9 +14505,9 @@ var recList = [
14551
14505
  isCollected: null,
14552
14506
  video: {
14553
14507
  itemId: "VIDEO2rUuG1709617832960",
14554
- title: "The dior 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.",
14508
+ 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.",
14555
14509
  tags: [
14556
- "Dior Toujours Bag",
14510
+ "chatlabs Toujours Bag",
14557
14511
  "Casual",
14558
14512
  "Leather Strap",
14559
14513
  "Handbags"
@@ -14563,7 +14517,7 @@ var recList = [
14563
14517
  bindCta: null,
14564
14518
  bindProduct: {
14565
14519
  itemId: "M2821SNIOM900",
14566
- title: "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
14520
+ title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
14567
14521
  tags: [
14568
14522
  "Medium",
14569
14523
  "Black",
@@ -14581,40 +14535,40 @@ var recList = [
14581
14535
  weight: null,
14582
14536
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:16",
14583
14537
  enTitle: "Shop now",
14584
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14538
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14585
14539
  link: null,
14586
14540
  linkTitle: null,
14587
14541
  linkType: null,
14588
14542
  menuCategoryId: "65966478d19caa37afe3603f"
14589
14543
  },
14590
14544
  homePage: [
14591
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
14592
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
14593
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
14594
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
14595
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
14596
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
14597
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
14545
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
14546
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
14547
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
14548
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
14549
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
14550
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
14551
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
14598
14552
  ],
14599
14553
  collection: "Eté 2024",
14600
- link: "https://www.dior.com/en_us/fashion/products/M1296ZRIW_M828-medium-dior-book-tote-ecru-and-blue-dior-oblique-embroidery-36-x-27.5-x-16.5-cm",
14554
+ 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",
14601
14555
  linkTitle: null,
14602
14556
  linkType: "WEB",
14603
- info: "The dior 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.",
14557
+ 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.",
14604
14558
  price: 4400,
14605
14559
  currency: "USD-$"
14606
14560
  },
14607
14561
  bindProducts: [
14608
14562
  ],
14609
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fs0BUtn8TYp4l8gWsg5WD9Ht8AP7R1709617796077.jpg",
14563
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14610
14564
  url: null,
14611
14565
  imgUrls: [
14612
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg",
14613
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"
14566
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg",
14567
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"
14614
14568
  ],
14615
14569
  hashTags: [
14616
14570
  "Handbags",
14617
- "Dior Toujours Bag"
14571
+ "chatlabs Toujours Bag"
14618
14572
  ]
14619
14573
  },
14620
14574
  product: null,
@@ -14625,7 +14579,7 @@ var recList = [
14625
14579
  isCollected: null,
14626
14580
  video: {
14627
14581
  itemId: "VIDEOGZGZI1709629679782",
14628
- title: "The Lady Dior bag embodies Dior'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",
14582
+ 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",
14629
14583
  tags: [
14630
14584
  "Handbags"
14631
14585
  ],
@@ -14634,9 +14588,9 @@ var recList = [
14634
14588
  bindCta: null,
14635
14589
  bindProduct: {
14636
14590
  itemId: "M0565OZEDM928",
14637
- title: "Medium Lady Dior Bag",
14591
+ title: "Medium Lady chatlabs Bag",
14638
14592
  tags: [
14639
- "Lady Dior",
14593
+ "Lady chatlabs",
14640
14594
  "Medium",
14641
14595
  "Handbags",
14642
14596
  "Crossbody"
@@ -14651,35 +14605,35 @@ var recList = [
14651
14605
  weight: null,
14652
14606
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:17",
14653
14607
  enTitle: "Shop now",
14654
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14608
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14655
14609
  link: null,
14656
14610
  linkTitle: null,
14657
14611
  linkType: null,
14658
14612
  menuCategoryId: "65966478d19caa37afe3603f"
14659
14613
  },
14660
14614
  homePage: [
14661
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
14662
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
14663
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
14664
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
14665
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
14666
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
14667
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
14615
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
14616
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
14617
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
14618
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
14619
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
14620
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
14621
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
14668
14622
  ],
14669
14623
  collection: "Eté 2024",
14670
- link: "https://www.dior.com/en_us/fashion/products/M0565OZED_M928",
14624
+ link: "https://www.chatlabs.com/en_us/fashion/products/M0565OZED_M928",
14671
14625
  linkTitle: null,
14672
14626
  linkType: "WEB",
14673
- info: "The Lady Dior bag embodies Dior'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 Dior bag can be carried by hand or wo",
14627
+ 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",
14674
14628
  price: 6500,
14675
14629
  currency: "USD-$"
14676
14630
  },
14677
14631
  bindProducts: [
14678
14632
  ],
14679
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsG1IT2gcB5iabcTL89Xs9bRHISMb1709629659698.jpg",
14633
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14680
14634
  url: null,
14681
14635
  imgUrls: [
14682
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"
14636
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"
14683
14637
  ],
14684
14638
  hashTags: [
14685
14639
  "Handbags"
@@ -14693,9 +14647,9 @@ var recList = [
14693
14647
  isCollected: null,
14694
14648
  video: {
14695
14649
  itemId: "VIDEOC2IMa1710324169054",
14696
- title: "The lady dior bag embodies dior'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 dior bag can be carried by hand or worn crossbody.",
14650
+ 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.",
14697
14651
  tags: [
14698
- "Lady Dior",
14652
+ "Lady chatlabs",
14699
14653
  "Removable Shoulder Strap",
14700
14654
  "Medium",
14701
14655
  "Handbags",
@@ -14706,13 +14660,13 @@ var recList = [
14706
14660
  bindCta: null,
14707
14661
  bindProduct: {
14708
14662
  itemId: "M0565SDBRM900",
14709
- title: "Medium Lady Dior Bag",
14663
+ title: "Medium Lady chatlabs Bag",
14710
14664
  tags: [
14711
14665
  "Women",
14712
14666
  "Black",
14713
14667
  "Handbags",
14714
14668
  "Hand",
14715
- "Lady Dior",
14669
+ "Lady chatlabs",
14716
14670
  "Crossbody"
14717
14671
  ],
14718
14672
  weight: null,
@@ -14725,35 +14679,35 @@ var recList = [
14725
14679
  weight: null,
14726
14680
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:18",
14727
14681
  enTitle: "Shop now",
14728
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14682
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14729
14683
  link: null,
14730
14684
  linkTitle: null,
14731
14685
  linkType: null,
14732
14686
  menuCategoryId: "65966478d19caa37afe3603f"
14733
14687
  },
14734
14688
  homePage: [
14735
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14736
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14737
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14738
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14739
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14740
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14689
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14690
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14691
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14692
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14693
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14694
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14741
14695
  ],
14742
14696
  collection: null,
14743
- link: "https://www.dior.com/en_us/fashion/products/M0565SDBR_M900-medium-lady-dior-bag-black-patent-to-matte-gradient-cannage-lambskin?objectID=M0565SDBR_M900&query=M0565SDBRM900&queryID=14cc52b35774a9a42e78fd9ba199860e",
14697
+ 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",
14744
14698
  linkTitle: null,
14745
14699
  linkType: "WEB",
14746
- info: "The Lady Dior bag embodies Dior'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 Dior bag can be carried by hand or worn crossbody.",
14700
+ 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.",
14747
14701
  price: 7100,
14748
14702
  currency: "USD-$"
14749
14703
  },
14750
14704
  bindProducts: [
14751
14705
  ],
14752
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsuF6sqlC9LCBLTgxHwMRinXwB6bF1710324135846.png",
14753
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",
14706
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14707
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",
14754
14708
  imgUrls: null,
14755
14709
  hashTags: [
14756
- "Lady Dior",
14710
+ "Lady chatlabs",
14757
14711
  "Handbags"
14758
14712
  ]
14759
14713
  },
@@ -14766,9 +14720,9 @@ var recList = [
14766
14720
  video: null,
14767
14721
  product: {
14768
14722
  itemId: "M0565OZEDM928",
14769
- title: "Medium Lady Dior Bag",
14723
+ title: "Medium Lady chatlabs Bag",
14770
14724
  tags: [
14771
- "Lady Dior",
14725
+ "Lady chatlabs",
14772
14726
  "Medium",
14773
14727
  "Handbags",
14774
14728
  "Crossbody"
@@ -14783,26 +14737,20 @@ var recList = [
14783
14737
  weight: null,
14784
14738
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:19",
14785
14739
  enTitle: "Shop now",
14786
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14740
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14787
14741
  link: null,
14788
14742
  linkTitle: null,
14789
14743
  linkType: null,
14790
14744
  menuCategoryId: "65966478d19caa37afe3603f"
14791
14745
  },
14792
14746
  homePage: [
14793
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
14794
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
14795
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
14796
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
14797
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
14798
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
14799
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
14747
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14800
14748
  ],
14801
14749
  collection: "Eté 2024",
14802
- link: "https://www.dior.com/en_us/fashion/products/M0565OZED_M928",
14750
+ link: "https://www.chatlabs.com/en_us/fashion/products/M0565OZED_M928",
14803
14751
  linkTitle: null,
14804
14752
  linkType: "WEB",
14805
- info: "The Lady Dior bag embodies Dior'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 Dior bag can be carried by hand or wo",
14753
+ 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",
14806
14754
  price: 6500,
14807
14755
  currency: "USD-$"
14808
14756
  },
@@ -15802,7 +15750,7 @@ const AniLink$1 = (_a) => {
15802
15750
  onClick === null || onClick === void 0 ? void 0 : onClick();
15803
15751
  }
15804
15752
  };
15805
- const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || '查看详情';
15753
+ const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || 'Show More';
15806
15754
  const aniTimStyle = React.useMemo(() => {
15807
15755
  var _a, _b;
15808
15756
  const ani = event === null || event === void 0 ? void 0 : event.animation;
@@ -16249,7 +16197,7 @@ const AniLinkPopup$1 = (_a) => {
16249
16197
  onClick === null || onClick === void 0 ? void 0 : onClick();
16250
16198
  }
16251
16199
  };
16252
- const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || '查看详情';
16200
+ const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || 'Show More';
16253
16201
  const aniTimStyle = React.useMemo(() => {
16254
16202
  const ani = event === null || event === void 0 ? void 0 : event.animation;
16255
16203
  if (ani) {
@@ -17945,7 +17893,7 @@ var NavBack$1 = React.memo(NavBack);
17945
17893
  * @Author: binruan@chatlabs.com
17946
17894
  * @Date: 2024-03-20 10:27:31
17947
17895
  * @LastEditors: binruan@chatlabs.com
17948
- * @LastEditTime: 2025-01-03 17:10:56
17896
+ * @LastEditTime: 2024-12-18 10:24:20
17949
17897
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
17950
17898
  *
17951
17899
  */
@@ -18070,7 +18018,6 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.inner
18070
18018
  skipLinkRef.current = false;
18071
18019
  }
18072
18020
  // 页面可见时触发,注意页面初始化时不会触发
18073
- refreshFeSession === null || refreshFeSession === void 0 ? void 0 : refreshFeSession(false);
18074
18021
  handleH5EnterLink();
18075
18022
  if (repCond) {
18076
18023
  SXP_EVENT_BUS.emit(SXP_EVENT_TYPE.PAGE_DID_SHOW, item);
@@ -18913,7 +18860,7 @@ var index$1 = React.memo(DiyPortalPreview);
18913
18860
  * @Author: binruan@chatlabs.com
18914
18861
  * @Date: 2023-10-31 10:56:01
18915
18862
  * @LastEditors: binruan@chatlabs.com
18916
- * @LastEditTime: 2024-10-23 15:07:29
18863
+ * @LastEditTime: 2024-12-12 14:48:31
18917
18864
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Popup\index.tsx
18918
18865
  *
18919
18866
  */