pb-sxp-ui 1.13.5 → 1.14.1

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.js CHANGED
@@ -655,15 +655,12 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
655
655
  const bffDataSource = useMemo(() => {
656
656
  return dataSources === null || dataSources === void 0 ? void 0 : dataSources.find((d) => d.type === DataSourceType.BFF);
657
657
  }, [dataSources]);
658
- const fakeUserId = useMemo(() => {
659
- var _a;
660
- return ((_a = bffDataSource === null || bffDataSource === void 0 ? void 0 : bffDataSource.headers) === null || _a === void 0 ? void 0 : _a['x-app-id']) + storeAndLoadFeUserId();
661
- }, [bffDataSource]);
662
658
  // bff API 请求方法
663
659
  const bffFetch = useCallback((path, options) => {
664
660
  if (!bffDataSource)
665
661
  return;
666
662
  const url = bffDataSource.url;
663
+ const fakeUserId = storeAndLoadFeUserId();
667
664
  if (options === null || options === void 0 ? void 0 : options.query) {
668
665
  const queryString = qs.stringify(options.query);
669
666
  path = `${path}?${queryString}`;
@@ -671,19 +668,19 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
671
668
  // 事件上报优化
672
669
  // Beacon API 用于发送异步和非阻塞请求到服务器。这类请求不需要响应。
673
670
  if (options.type === 'beacon' && navigator.sendBeacon) {
674
- return navigator.sendBeacon(`${url}/api/${path}`, new Blob([
671
+ return navigator.sendBeacon(`${url}/api/v1${path}`, new Blob([
675
672
  JSON.stringify(Object.assign(Object.assign(Object.assign({}, options.body), bffDataSource.headers), { 'x-user-id': fakeUserId }))
676
673
  ], { type: 'application/json;charset=UTF-8' }));
677
674
  }
678
675
  return window
679
- .fetch(`${url}/api/${path}`, {
676
+ .fetch(`${url}/api/v1${path}`, {
680
677
  headers: Object.assign({ 'Content-Type': 'application/json', 'x-user-id': fakeUserId }, bffDataSource.headers),
681
678
  method: options.method,
682
679
  body: JSON.stringify(options.body)
683
680
  })
684
681
  .then((res) => res.json())
685
682
  .catch((err) => Promise.reject(err));
686
- }, [bffDataSource, fakeUserId]);
683
+ }, [bffDataSource]);
687
684
  // 获取推荐视频数据
688
685
  const getRecommendVideos = useCallback((query) => __awaiter(void 0, void 0, void 0, function* () {
689
686
  var _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
@@ -721,7 +718,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
721
718
  const recurveRecList = (query) => __awaiter(void 0, void 0, void 0, function* () {
722
719
  var _v, _w, _x, _y, _z, _0;
723
720
  query.pageNum = pageNum;
724
- result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/list', { method: 'POST', body: query }));
721
+ result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/list', { method: 'POST', body: query }));
725
722
  if (!(result === null || result === void 0 ? void 0 : result.success)) {
726
723
  return undefined;
727
724
  }
@@ -743,7 +740,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
743
740
  if (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) {
744
741
  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 });
745
742
  }
746
- const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/list', { method: 'POST', body: query }));
743
+ const 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
  }
@@ -793,7 +790,6 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
793
790
  return expire;
794
791
  }, [data]);
795
792
  const bffEventReport = useCallback(({ userInfo, eventInfo, reportLayId = true }) => {
796
- var _a;
797
793
  // 关闭 BFF 事件上报
798
794
  if (!enableReportEvent || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview)) {
799
795
  return;
@@ -815,23 +811,14 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
815
811
  console.log('userInfo:', userInfo);
816
812
  console.log('eventInfo:', ef);
817
813
  console.log('========= 结束 =========');
818
- 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}`, {
814
+ return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/event/report', {
819
815
  method: 'POST',
820
816
  body: { userInfo: realUserInfo, eventInfo: realEventInfo },
821
817
  type: 'beacon'
822
818
  });
823
- }, [
824
- bffFetch,
825
- curReqInfo,
826
- enableReportEvent,
827
- globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview,
828
- layoutVariantId,
829
- globalConfig,
830
- playbookType,
831
- bffDataSource
832
- ]);
819
+ }, [bffFetch, curReqInfo, enableReportEvent, globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview, layoutVariantId, globalConfig, playbookType]);
833
820
  const bffFbReport = useCallback(({ eventName, product }) => {
834
- var _a, _b, _c, _d, _e, _f;
821
+ var _a, _b, _c, _d, _e;
835
822
  if (!enableReportEvent ||
836
823
  !enabledMetaConversionApi ||
837
824
  (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) ||
@@ -843,7 +830,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
843
830
  const fbclid = urlParams === null || urlParams === void 0 ? void 0 : urlParams.get('fbclid');
844
831
  const fix_par = {
845
832
  event_source_url: (_c = window === null || window === void 0 ? void 0 : window.location) === null || _c === void 0 ? void 0 : _c.href,
846
- external_id: fakeUserId,
833
+ external_id: storeAndLoadFeUserId(),
847
834
  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 : '',
848
835
  fbc: fbclid ? `fb.2.${new Date().getTime()}.${fbclid}` : '',
849
836
  fbp: getCookie('_fbp') ? `fb.2.${new Date().getTime()}.${getCookie('_fbp')}` : '',
@@ -895,30 +882,22 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
895
882
  }
896
883
  };
897
884
  getEventParams(jsonParams);
898
- 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}`, {
885
+ return bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/fb/events', {
899
886
  method: 'POST',
900
887
  body: jsonParams,
901
888
  type: 'beacon'
902
889
  });
903
- }, [
904
- bffFetch,
905
- enableReportEvent,
906
- enabledMetaConversionApi,
907
- globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview,
908
- globalConfig,
909
- fakeUserId,
910
- bffDataSource
911
- ]);
890
+ }, [bffFetch, enableReportEvent, enabledMetaConversionApi, globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview, globalConfig]);
912
891
  const bffMutateLike = useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
913
- const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/like', { method: 'POST', body }));
892
+ const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/like', { method: 'POST', body }));
914
893
  return res === null || res === void 0 ? void 0 : res.success;
915
894
  }), [bffFetch]);
916
895
  const bffMutateUnlike = useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
917
- const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/unlike', { method: 'POST', body }));
896
+ const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/recommend/unlike', { method: 'POST', body }));
918
897
  return res === null || res === void 0 ? void 0 : res.success;
919
898
  }), [bffFetch]);
920
899
  const bffSubmitForm = useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
921
- const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/customform', { method: 'POST', body }));
900
+ const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/customform', { method: 'POST', body }));
922
901
  return res === null || res === void 0 ? void 0 : res.success;
923
902
  }), [bffFetch]);
924
903
  // 获取 Tag
@@ -933,7 +912,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
933
912
  const key = val.split('=')[0];
934
913
  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);
935
914
  })) === null || _9 === void 0 ? void 0 : _9.join('&')) !== null && _10 !== void 0 ? _10 : '';
936
- const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/tag/list', { method: 'GET', query: { channel: decodeURIComponent(val) } }));
915
+ const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('/tag/list', { method: 'GET', query: { channel: decodeURIComponent(val) } }));
937
916
  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 : []);
938
917
  }
939
918
  catch (e) {
@@ -1007,10 +986,10 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1007
986
  let curData;
1008
987
  let gldata;
1009
988
  if (data === null || data === void 0 ? void 0 : data.layoutVariantId) {
1010
- layId = data === null || data === void 0 ? void 0 : data.layoutVariantId;
1011
- setLayoutVariantId(data === null || data === void 0 ? void 0 : data.layoutVariantId);
1012
989
  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];
1013
990
  if (id) {
991
+ layId = id;
992
+ setLayoutVariantId(id);
1014
993
  curData = dataList === null || dataList === void 0 ? void 0 : dataList.find((item) => (item === null || item === void 0 ? void 0 : item.id) === id);
1015
994
  if (curData) {
1016
995
  setPageData(curData);
@@ -10097,7 +10076,7 @@ var CommodityGroup$1 = memo(CommodityGroup);
10097
10076
  * @Author: binruan@chatlabs.com
10098
10077
  * @Date: 2024-03-20 14:56:16
10099
10078
  * @LastEditors: binruan@chatlabs.com
10100
- * @LastEditTime: 2024-12-20 14:32:26
10079
+ * @LastEditTime: 2024-10-24 17:51:19
10101
10080
  * @FilePath: \pb-sxp-ui\src\core\utils\materials.ts
10102
10081
  *
10103
10082
  */
@@ -10135,16 +10114,14 @@ const getBgStyle = (imgSrc) => {
10135
10114
  };
10136
10115
  const getPriceText = ({ product, enableFormattedPrice, globalConfig, isHiddenDef, style }) => {
10137
10116
  var _a, _b, _c, _d, _e, _f, _g, _h;
10138
- let text = '';
10139
10117
  if ((!(product === null || product === void 0 ? void 0 : product.currency) || !(product === null || product === void 0 ? void 0 : product.price)) && isHiddenDef)
10140
10118
  return null;
10141
- 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);
10142
- if (typeof price !== 'number')
10143
- return text;
10119
+ 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;
10120
+ let text = '';
10144
10121
  let priceSymbol = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.priceSymbol;
10145
10122
  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 : '' : '$';
10146
10123
  const isToLocStr = enableFormattedPrice === undefined || enableFormattedPrice;
10147
- let decPic = price === null || price === void 0 ? void 0 : price.toString();
10124
+ let decPic = price.toString();
10148
10125
  if (priceSymbol === null || priceSymbol === void 0 ? void 0 : priceSymbol.showTwoDecimalPoint) {
10149
10126
  decPic = price === null || price === void 0 ? void 0 : price.toFixed(2);
10150
10127
  }
@@ -11962,7 +11939,7 @@ const CommodityList = createMaterial(CommodityListComponent, {
11962
11939
  * @Author: binruan@chatlabs.com
11963
11940
  * @Date: 2023-10-27 14:06:35
11964
11941
  * @LastEditors: binruan@chatlabs.com
11965
- * @LastEditTime: 2024-08-08 17:32:11
11942
+ * @LastEditTime: 2024-12-12 15:12:57
11966
11943
  * @FilePath: \pb-sxp-ui\src\materials\sxp\popup\Iframe\settingRender.tsx
11967
11944
  *
11968
11945
  */
@@ -11976,16 +11953,32 @@ var settingRender$8 = [
11976
11953
  name: ['style', 'backgroundColor']
11977
11954
  }
11978
11955
  ]
11956
+ },
11957
+ {
11958
+ title: 'iframe',
11959
+ child: [
11960
+ {
11961
+ type: 'TextArea',
11962
+ label: 'url',
11963
+ name: ['props', 'iframe', 'src']
11964
+ },
11965
+ {
11966
+ type: 'TextArea',
11967
+ label: 'allow',
11968
+ name: ['props', 'iframe', 'allow']
11969
+ }
11970
+ ]
11979
11971
  }
11980
11972
  ];
11981
11973
 
11982
11974
  const Iframe$1 = (_a) => {
11983
11975
  var _b, _c;
11984
- 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"]);
11976
+ 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"]);
11985
11977
  const { popupDetailData } = useSxpDataSource();
11986
- 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;
11987
- return (React.createElement("div", Object.assign({ className: `${css(Object.assign({}, style))}` }, props),
11988
- React.createElement("iframe", { src: iframeUrl, style: {
11978
+ const { src, allow } = iframe || {};
11979
+ 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);
11980
+ return (React.createElement("div", Object.assign({ className: `${css(Object.assign(Object.assign({}, style), { overflow: 'hidden' }))}` }, props),
11981
+ React.createElement("iframe", { src: iframeUrl, allow: allow, scrolling: 'no', style: {
11989
11982
  width: '100%',
11990
11983
  height: 'calc(100% - 50px)',
11991
11984
  marginTop: '50px',
@@ -13499,7 +13492,7 @@ var settingRender$5 = [
13499
13492
  * @Author: binruan@chatlabs.com
13500
13493
  * @Date: 2023-12-26 16:11:34
13501
13494
  * @LastEditors: binruan@chatlabs.com
13502
- * @LastEditTime: 2024-10-11 18:22:21
13495
+ * @LastEditTime: 2025-01-17 18:55:14
13503
13496
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Navbar.tsx
13504
13497
  *
13505
13498
  */
@@ -13510,7 +13503,7 @@ const Navbar = ({ icon, styles, textStyle, onClose }) => {
13510
13503
  React.createElement("button", { className: 'clc-sxp-nav-left', role: 'button', "aria-label": 'back button', onClick: onClose },
13511
13504
  React.createElement("img", { src: icon, alt: 'back button' })),
13512
13505
  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: {
13513
- __html: setFontForText(`#${(_a = waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag) !== null && _a !== void 0 ? _a : '标题'}`, textStyle)
13506
+ __html: setFontForText(`#${(_a = waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag) !== null && _a !== void 0 ? _a : 'title'}`, textStyle)
13514
13507
  } })));
13515
13508
  };
13516
13509
  var Navbar$1 = memo(Navbar);
@@ -13520,7 +13513,7 @@ var requestId = "3d989325-e7d6-4a74-8a97-98febdf5b567";
13520
13513
  var channel = null;
13521
13514
  var rtc = null;
13522
13515
  var tag = {
13523
- 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.",
13516
+ 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.",
13524
13517
  link: "www.baidu.com",
13525
13518
  linkTitle: null,
13526
13519
  linkType: "WEB"
@@ -13531,9 +13524,9 @@ var recList = [
13531
13524
  isCollected: null,
13532
13525
  video: {
13533
13526
  itemId: "VIDEOY2BMu1710323630175",
13534
- 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.",
13527
+ 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.",
13535
13528
  tags: [
13536
- "Dior Toujours Bag",
13529
+ "chatlabs Toujours Bag",
13537
13530
  "Casual",
13538
13531
  "Leather Strap",
13539
13532
  "Handbags"
@@ -13543,7 +13536,7 @@ var recList = [
13543
13536
  bindCta: null,
13544
13537
  bindProduct: {
13545
13538
  itemId: "M2821SNIOM900",
13546
- title: "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
13539
+ title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
13547
13540
  tags: [
13548
13541
  "Medium",
13549
13542
  "Black",
@@ -13561,36 +13554,36 @@ var recList = [
13561
13554
  weight: null,
13562
13555
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:0",
13563
13556
  enTitle: "Shop now",
13564
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13557
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13565
13558
  link: null,
13566
13559
  linkTitle: null,
13567
13560
  linkType: null,
13568
13561
  menuCategoryId: "65966478d19caa37afe3603f"
13569
13562
  },
13570
13563
  homePage: [
13571
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
13572
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
13573
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
13574
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
13575
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
13576
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
13577
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
13564
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
13565
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
13566
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
13567
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
13568
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
13569
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
13570
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
13578
13571
  ],
13579
13572
  collection: "Eté 2024",
13580
- 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",
13573
+ 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",
13581
13574
  linkTitle: null,
13582
13575
  linkType: "WEB",
13583
- 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.",
13576
+ 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.",
13584
13577
  price: 4400,
13585
13578
  currency: "USD-$"
13586
13579
  },
13587
13580
  bindProducts: [
13588
13581
  ],
13589
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fswbY3wT0hCmrYkrqDzFKnHb3NMux1710323481052.png",
13590
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",
13582
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13583
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",
13591
13584
  imgUrls: null,
13592
13585
  hashTags: [
13593
- "Dior Toujours Bag",
13586
+ "chatlabs Toujours Bag",
13594
13587
  "Casual",
13595
13588
  "Leather Strap",
13596
13589
  "Handbags"
@@ -13604,18 +13597,18 @@ var recList = [
13604
13597
  isCollected: null,
13605
13598
  video: {
13606
13599
  itemId: "VIDEO6JCOb1710323364018",
13607
- 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.",
13600
+ 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.",
13608
13601
  tags: [
13609
13602
  "Handbags",
13610
13603
  "Manufacturing Craftsmanship",
13611
- "Dior Book Tote"
13604
+ "chatlabs Book Tote"
13612
13605
  ],
13613
13606
  weight: null,
13614
13607
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEO6JCOb1710323364018:default:3::branch:Handbags:1",
13615
13608
  bindCta: null,
13616
13609
  bindProduct: {
13617
13610
  itemId: "M1296ZRIWM828",
13618
- title: "Medium Dior Book Tote",
13611
+ title: "Medium chatlabs Book Tote",
13619
13612
  tags: [
13620
13613
  "Maria Grazia Chiuri",
13621
13614
  "Hand",
@@ -13634,34 +13627,34 @@ var recList = [
13634
13627
  weight: null,
13635
13628
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:1",
13636
13629
  enTitle: "Shop now",
13637
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13630
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13638
13631
  link: null,
13639
13632
  linkTitle: null,
13640
13633
  linkType: null,
13641
13634
  menuCategoryId: "65966478d19caa37afe3603f"
13642
13635
  },
13643
13636
  homePage: [
13644
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13645
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13646
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13647
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13637
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13638
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13639
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13640
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13648
13641
  ],
13649
13642
  collection: "Eté 2024",
13650
- 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",
13643
+ 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",
13651
13644
  linkTitle: null,
13652
13645
  linkType: "WEB",
13653
- 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.",
13646
+ 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.",
13654
13647
  price: 3350,
13655
13648
  currency: "USD-$"
13656
13649
  },
13657
13650
  bindProducts: [
13658
13651
  ],
13659
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsAHlkdbqYj5F84o2faRzU1E3AvG11710323339209.png",
13660
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",
13652
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13653
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",
13661
13654
  imgUrls: null,
13662
13655
  hashTags: [
13663
13656
  "Handbags",
13664
- "Dior Book Tote"
13657
+ "chatlabs Book Tote"
13665
13658
  ]
13666
13659
  },
13667
13660
  product: null,
@@ -13673,13 +13666,13 @@ var recList = [
13673
13666
  video: null,
13674
13667
  product: {
13675
13668
  itemId: "M2820OTKVM911",
13676
- title: "Large Dior Toujours Bag Black Cannage Tweed",
13669
+ title: "Large chatlabs Toujours Bag Black Cannage Tweed",
13677
13670
  tags: [
13678
13671
  "Black",
13679
13672
  "Women",
13680
13673
  "Handbags",
13681
13674
  "Bucket Bag",
13682
- "Dior Toujours Bag"
13675
+ "chatlabs Toujours Bag"
13683
13676
  ],
13684
13677
  weight: null,
13685
13678
  traceInfo: "VECTOReVssi1704360966770:PRODUCT:M2820OTKVM911:default:3::branch:Handbags:2",
@@ -13691,26 +13684,20 @@ var recList = [
13691
13684
  weight: null,
13692
13685
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:2",
13693
13686
  enTitle: "Shop now",
13694
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13687
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13695
13688
  link: null,
13696
13689
  linkTitle: null,
13697
13690
  linkType: null,
13698
13691
  menuCategoryId: "65966478d19caa37afe3603f"
13699
13692
  },
13700
13693
  homePage: [
13701
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsJTjyFchOFEJSTRYxXvL2XPU1dP61710238469418.jpg",
13702
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fstdFA1dFT55QjtQPU2qHNENo5peF1710836061716.jpg",
13703
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fs9xf8AlIApbHezVL3BsxjUGIrN231710836061181.jpg",
13704
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs9iZ20MjLAPkXmFKvD8HzhLaBJ671710238470272.jpg",
13705
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsSSodev3wicDfE1DYNWPQVeRjErt1710238464035.jpg",
13706
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs3YAOuN6Pd9NFvH1Rdooj6eLI18S1710238465296.jpg",
13707
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsBwIEp6OzI49isvHgiKD0cPSFtrD1710238459007.jpg"
13694
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13708
13695
  ],
13709
13696
  collection: "Eté 2024",
13710
- link: "https://www.dior.com/en_us/fashion/products/M2820OTKV_M911-large-dior-toujours-bag",
13697
+ link: "https://www.chatlabs.com/en_us/fashion/products/M2820OTKV_M911-large-chatlabs-toujours-bag",
13711
13698
  linkTitle: null,
13712
13699
  linkType: "WEB",
13713
- 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.",
13700
+ 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.",
13714
13701
  price: 4200,
13715
13702
  currency: "USD-$"
13716
13703
  },
@@ -13752,22 +13739,17 @@ var recList = [
13752
13739
  weight: null,
13753
13740
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:3",
13754
13741
  enTitle: "Shop now",
13755
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13742
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13756
13743
  link: null,
13757
13744
  linkTitle: null,
13758
13745
  linkType: null,
13759
13746
  menuCategoryId: "65966478d19caa37afe3603f"
13760
13747
  },
13761
13748
  homePage: [
13762
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
13763
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
13764
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
13765
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
13766
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
13767
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
13749
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13768
13750
  ],
13769
13751
  collection: "Eté 2024",
13770
- 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",
13752
+ 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",
13771
13753
  linkTitle: null,
13772
13754
  linkType: "WEB",
13773
13755
  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.",
@@ -13776,10 +13758,10 @@ var recList = [
13776
13758
  },
13777
13759
  bindProducts: [
13778
13760
  ],
13779
- cover: null,
13761
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13780
13762
  url: null,
13781
13763
  imgUrls: [
13782
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"
13764
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"
13783
13765
  ],
13784
13766
  hashTags: [
13785
13767
  "Maria Grazia Chiuri",
@@ -13796,7 +13778,7 @@ var recList = [
13796
13778
  video: null,
13797
13779
  product: {
13798
13780
  itemId: "S5909CTZQM928",
13799
- title: "Saddle Shoulder Pouch Blue Dior Oblique Jacquard ",
13781
+ title: "Saddle Shoulder Pouch Blue chatlabs Oblique Jacquard ",
13800
13782
  tags: [
13801
13783
  "Saddle Bags",
13802
13784
  "Handbags",
@@ -13814,20 +13796,17 @@ var recList = [
13814
13796
  weight: null,
13815
13797
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:4",
13816
13798
  enTitle: "Shop now",
13817
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13799
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13818
13800
  link: null,
13819
13801
  linkTitle: null,
13820
13802
  linkType: null,
13821
13803
  menuCategoryId: "65966478d19caa37afe3603f"
13822
13804
  },
13823
13805
  homePage: [
13824
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs34CpwKJOyjEDgoHypoLYakF8oR31710316280669.png",
13825
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsLOSOEf9pmz7wKnFaifWNw3TZ7Gy1710316287874.png",
13826
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsWHmVcrzHKKj6EfhfnQkxYIOt20a1710316295683.png",
13827
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fslyBNMyQwjpjY4EKzyrqzTMlOGRQ1710316313161.png"
13806
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13828
13807
  ],
13829
13808
  collection: "Eté 2024",
13830
- link: "https://www.dior.com/en_us/fashion/products/S5909CTZQ",
13809
+ link: "https://www.chatlabs.com/en_us/fashion/products/S5909CTZQ",
13831
13810
  linkTitle: null,
13832
13811
  linkType: "WEB",
13833
13812
  info: null,
@@ -13841,17 +13820,17 @@ var recList = [
13841
13820
  isCollected: null,
13842
13821
  video: {
13843
13822
  itemId: "VIDEOrZguC1710324513737",
13844
- 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.",
13823
+ 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.",
13845
13824
  tags: [
13846
13825
  "Handbags",
13847
- "Dior Book Tote"
13826
+ "chatlabs Book Tote"
13848
13827
  ],
13849
13828
  weight: null,
13850
13829
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOrZguC1710324513737:default:3::branch:Handbags:5",
13851
13830
  bindCta: null,
13852
13831
  bindProduct: {
13853
13832
  itemId: "M1296ZRIWM828",
13854
- title: "Medium Dior Book Tote",
13833
+ title: "Medium chatlabs Book Tote",
13855
13834
  tags: [
13856
13835
  "Maria Grazia Chiuri",
13857
13836
  "Hand",
@@ -13870,34 +13849,31 @@ var recList = [
13870
13849
  weight: null,
13871
13850
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:5",
13872
13851
  enTitle: "Shop now",
13873
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13852
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13874
13853
  link: null,
13875
13854
  linkTitle: null,
13876
13855
  linkType: null,
13877
13856
  menuCategoryId: "65966478d19caa37afe3603f"
13878
13857
  },
13879
13858
  homePage: [
13880
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13881
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13882
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13883
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13859
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13884
13860
  ],
13885
13861
  collection: "Eté 2024",
13886
- 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",
13862
+ 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",
13887
13863
  linkTitle: null,
13888
13864
  linkType: "WEB",
13889
- 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.",
13865
+ 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.",
13890
13866
  price: 3350,
13891
13867
  currency: "USD-$"
13892
13868
  },
13893
13869
  bindProducts: [
13894
13870
  ],
13895
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fstXNWStczbY8HbIKEqMwfCkv5CI51710324494939.png",
13896
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",
13871
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13872
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",
13897
13873
  imgUrls: null,
13898
13874
  hashTags: [
13899
13875
  "Handbags",
13900
- "Dior Book Tote"
13876
+ "chatlabs Book Tote"
13901
13877
  ]
13902
13878
  },
13903
13879
  product: null,
@@ -13909,7 +13885,7 @@ var recList = [
13909
13885
  video: null,
13910
13886
  product: {
13911
13887
  itemId: "M1296ZRIWM828",
13912
- title: "Medium Dior Book Tote",
13888
+ title: "Medium chatlabs Book Tote",
13913
13889
  tags: [
13914
13890
  "Maria Grazia Chiuri",
13915
13891
  "Hand",
@@ -13928,23 +13904,20 @@ var recList = [
13928
13904
  weight: null,
13929
13905
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:6",
13930
13906
  enTitle: "Shop now",
13931
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13907
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13932
13908
  link: null,
13933
13909
  linkTitle: null,
13934
13910
  linkType: null,
13935
13911
  menuCategoryId: "65966478d19caa37afe3603f"
13936
13912
  },
13937
13913
  homePage: [
13938
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
13939
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
13940
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
13941
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
13914
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
13942
13915
  ],
13943
13916
  collection: "Eté 2024",
13944
- 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",
13917
+ 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",
13945
13918
  linkTitle: null,
13946
13919
  linkType: "WEB",
13947
- 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.",
13920
+ 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.",
13948
13921
  price: 3350,
13949
13922
  currency: "USD-$"
13950
13923
  },
@@ -13955,13 +13928,13 @@ var recList = [
13955
13928
  isCollected: null,
13956
13929
  video: {
13957
13930
  itemId: "VIDEOEtr621710300614047",
13958
- 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",
13931
+ 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",
13959
13932
  tags: [
13960
13933
  "Handbags",
13961
13934
  "Leather Strap",
13962
13935
  "Spring-Summer 2024 Fashion Show",
13963
13936
  "Backstage",
13964
- "Dior Toujours Bag"
13937
+ "chatlabs Toujours Bag"
13965
13938
  ],
13966
13939
  weight: null,
13967
13940
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOEtr621710300614047:default:3::branch:Handbags:7",
@@ -13969,16 +13942,16 @@ var recList = [
13969
13942
  bindProduct: null,
13970
13943
  bindProducts: [
13971
13944
  ],
13972
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fshkOldZwfsSqTgvxHJzNBwS66ySc1710300910103.jpg",
13945
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
13973
13946
  url: null,
13974
13947
  imgUrls: [
13975
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"
13948
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"
13976
13949
  ],
13977
13950
  hashTags: [
13978
13951
  "Backstage",
13979
13952
  "Handbags",
13980
13953
  "Spring-Summer 2024 Fashion Show",
13981
- "Dior Toujours Bag"
13954
+ "chatlabs Toujours Bag"
13982
13955
  ]
13983
13956
  },
13984
13957
  product: null,
@@ -13989,21 +13962,21 @@ var recList = [
13989
13962
  isCollected: null,
13990
13963
  video: {
13991
13964
  itemId: "VIDEOO8Zjt1709616802987",
13992
- 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.",
13965
+ 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.",
13993
13966
  tags: [
13994
13967
  "Blue",
13995
13968
  "Medium",
13996
13969
  "Shoulder",
13997
13970
  "Hand",
13998
13971
  "Handbags",
13999
- "Dior Book Tote"
13972
+ "chatlabs Book Tote"
14000
13973
  ],
14001
13974
  weight: null,
14002
13975
  traceInfo: "VECTOReVssi1704360966770:VIDEO:VIDEOO8Zjt1709616802987:default:3::branch:Handbags:8",
14003
13976
  bindCta: null,
14004
13977
  bindProduct: {
14005
13978
  itemId: "M1296ZRIWM828",
14006
- title: "Medium Dior Book Tote",
13979
+ title: "Medium chatlabs Book Tote",
14007
13980
  tags: [
14008
13981
  "Maria Grazia Chiuri",
14009
13982
  "Hand",
@@ -14022,35 +13995,32 @@ var recList = [
14022
13995
  weight: null,
14023
13996
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:8",
14024
13997
  enTitle: "Shop now",
14025
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
13998
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14026
13999
  link: null,
14027
14000
  linkTitle: null,
14028
14001
  linkType: null,
14029
14002
  menuCategoryId: "65966478d19caa37afe3603f"
14030
14003
  },
14031
14004
  homePage: [
14032
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
14033
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
14034
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
14035
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
14005
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14036
14006
  ],
14037
14007
  collection: "Eté 2024",
14038
- 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",
14008
+ 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",
14039
14009
  linkTitle: null,
14040
14010
  linkType: "WEB",
14041
- 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.",
14011
+ 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.",
14042
14012
  price: 3350,
14043
14013
  currency: "USD-$"
14044
14014
  },
14045
14015
  bindProducts: [
14046
14016
  ],
14047
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsmS72zfInwmblYTnuYzRuZKAOlhr1709616742898.jpg",
14017
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14048
14018
  url: null,
14049
14019
  imgUrls: [
14050
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"
14020
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"
14051
14021
  ],
14052
14022
  hashTags: [
14053
- "Dior Book Tote",
14023
+ "chatlabs Book Tote",
14054
14024
  "Handbags"
14055
14025
  ]
14056
14026
  },
@@ -14063,7 +14033,7 @@ var recList = [
14063
14033
  video: null,
14064
14034
  product: {
14065
14035
  itemId: "M2821SNIOM900",
14066
- title: "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
14036
+ title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
14067
14037
  tags: [
14068
14038
  "Medium",
14069
14039
  "Black",
@@ -14081,26 +14051,20 @@ var recList = [
14081
14051
  weight: null,
14082
14052
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:9",
14083
14053
  enTitle: "Shop now",
14084
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14054
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14085
14055
  link: null,
14086
14056
  linkTitle: null,
14087
14057
  linkType: null,
14088
14058
  menuCategoryId: "65966478d19caa37afe3603f"
14089
14059
  },
14090
14060
  homePage: [
14091
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
14092
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
14093
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
14094
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
14095
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
14096
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
14097
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
14061
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14098
14062
  ],
14099
14063
  collection: "Eté 2024",
14100
- 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",
14064
+ 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",
14101
14065
  linkTitle: null,
14102
14066
  linkType: "WEB",
14103
- 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.",
14067
+ 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.",
14104
14068
  price: 4400,
14105
14069
  currency: "USD-$"
14106
14070
  },
@@ -14111,9 +14075,9 @@ var recList = [
14111
14075
  isCollected: null,
14112
14076
  video: {
14113
14077
  itemId: "VIDEOesZlV1710323980494",
14114
- 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.",
14078
+ 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.",
14115
14079
  tags: [
14116
- "Lady Dior",
14080
+ "Lady chatlabs",
14117
14081
  "Removable Shoulder Strap",
14118
14082
  "Medium",
14119
14083
  "Handbags",
@@ -14124,13 +14088,13 @@ var recList = [
14124
14088
  bindCta: null,
14125
14089
  bindProduct: {
14126
14090
  itemId: "M0565SDBRM900",
14127
- title: "Medium Lady Dior Bag",
14091
+ title: "Medium Lady chatlabs Bag",
14128
14092
  tags: [
14129
14093
  "Women",
14130
14094
  "Black",
14131
14095
  "Handbags",
14132
14096
  "Hand",
14133
- "Lady Dior",
14097
+ "Lady chatlabs",
14134
14098
  "Crossbody"
14135
14099
  ],
14136
14100
  weight: null,
@@ -14143,35 +14107,30 @@ var recList = [
14143
14107
  weight: null,
14144
14108
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:10",
14145
14109
  enTitle: "Shop now",
14146
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14110
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14147
14111
  link: null,
14148
14112
  linkTitle: null,
14149
14113
  linkType: null,
14150
14114
  menuCategoryId: "65966478d19caa37afe3603f"
14151
14115
  },
14152
14116
  homePage: [
14153
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14154
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14155
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14156
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14157
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14158
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14117
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14159
14118
  ],
14160
14119
  collection: null,
14161
- 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",
14120
+ 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",
14162
14121
  linkTitle: null,
14163
14122
  linkType: "WEB",
14164
- 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.",
14123
+ 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.",
14165
14124
  price: 7100,
14166
14125
  currency: "USD-$"
14167
14126
  },
14168
14127
  bindProducts: [
14169
14128
  ],
14170
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsiwMQ88zO5Xdnl939krMyBMbz7Js1710323763013.png",
14171
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",
14129
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14130
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",
14172
14131
  imgUrls: null,
14173
14132
  hashTags: [
14174
- "Lady Dior",
14133
+ "Lady chatlabs",
14175
14134
  "Handbags"
14176
14135
  ]
14177
14136
  },
@@ -14183,10 +14142,10 @@ var recList = [
14183
14142
  isCollected: null,
14184
14143
  video: {
14185
14144
  itemId: "VIDEOdvsXq1710324342942",
14186
- 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.",
14145
+ 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.",
14187
14146
  tags: [
14188
14147
  "Summer 2024",
14189
- "Lady Dior",
14148
+ "Lady chatlabs",
14190
14149
  "Casual",
14191
14150
  "Lightweight",
14192
14151
  "Medium",
@@ -14197,11 +14156,11 @@ var recList = [
14197
14156
  bindCta: null,
14198
14157
  bindProduct: {
14199
14158
  itemId: "M1151OTRLM900",
14200
- title: "Medium Lady D-Sire My ABCDior Bag",
14159
+ title: "Medium Lady D-Sire My ABCchatlabs Bag",
14201
14160
  tags: [
14202
14161
  "Handbags",
14203
14162
  "Summer 2024",
14204
- "Lady Dior",
14163
+ "Lady chatlabs",
14205
14164
  "Black",
14206
14165
  "Medium",
14207
14166
  "Women",
@@ -14217,36 +14176,36 @@ var recList = [
14217
14176
  weight: null,
14218
14177
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:11",
14219
14178
  enTitle: "Shop now",
14220
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14179
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14221
14180
  link: null,
14222
14181
  linkTitle: null,
14223
14182
  linkType: null,
14224
14183
  menuCategoryId: "65966478d19caa37afe3603f"
14225
14184
  },
14226
14185
  homePage: [
14227
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg",
14228
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg",
14229
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg",
14230
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg",
14231
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg",
14232
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"
14186
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg",
14187
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg",
14188
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg",
14189
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg",
14190
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg",
14191
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"
14233
14192
  ],
14234
14193
  collection: null,
14235
- 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",
14194
+ 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",
14236
14195
  linkTitle: null,
14237
14196
  linkType: "WEB",
14238
- 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",
14197
+ 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",
14239
14198
  price: 6100,
14240
14199
  currency: "USD-$"
14241
14200
  },
14242
14201
  bindProducts: [
14243
14202
  ],
14244
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOsdUSXr57U5Twhhkv17th3yHqBJ1710324292456.png",
14245
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",
14203
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14204
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",
14246
14205
  imgUrls: null,
14247
14206
  hashTags: [
14248
14207
  "Summer 2024",
14249
- "Lady Dior",
14208
+ "Lady chatlabs",
14250
14209
  "Handbags"
14251
14210
  ]
14252
14211
  },
@@ -14289,22 +14248,22 @@ var recList = [
14289
14248
  weight: null,
14290
14249
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:12",
14291
14250
  enTitle: "Shop now",
14292
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14251
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14293
14252
  link: null,
14294
14253
  linkTitle: null,
14295
14254
  linkType: null,
14296
14255
  menuCategoryId: "65966478d19caa37afe3603f"
14297
14256
  },
14298
14257
  homePage: [
14299
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
14300
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
14301
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
14302
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
14303
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
14304
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
14258
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
14259
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
14260
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
14261
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
14262
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
14263
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
14305
14264
  ],
14306
14265
  collection: "Eté 2024",
14307
- 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",
14266
+ 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",
14308
14267
  linkTitle: null,
14309
14268
  linkType: "WEB",
14310
14269
  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.",
@@ -14313,8 +14272,8 @@ var recList = [
14313
14272
  },
14314
14273
  bindProducts: [
14315
14274
  ],
14316
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsqwogfFahvNml7vmATxwfKLcNlh91710324602536.png",
14317
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",
14275
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14276
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",
14318
14277
  imgUrls: null,
14319
14278
  hashTags: [
14320
14279
  "Maria Grazia Chiuri",
@@ -14330,12 +14289,12 @@ var recList = [
14330
14289
  isCollected: null,
14331
14290
  video: {
14332
14291
  itemId: "VIDEOvqhF71709609258469",
14333
- 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.",
14292
+ 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.",
14334
14293
  tags: [
14335
14294
  "Thin",
14336
14295
  "Removable Shoulder Strap",
14337
14296
  "Medium",
14338
- "Lady Dior",
14297
+ "Lady chatlabs",
14339
14298
  "Crossbody",
14340
14299
  "Handbags",
14341
14300
  "Cross-body & Shoulder Bags"
@@ -14345,13 +14304,13 @@ var recList = [
14345
14304
  bindCta: null,
14346
14305
  bindProduct: {
14347
14306
  itemId: "M0565SDBRM900",
14348
- title: "Medium Lady Dior Bag",
14307
+ title: "Medium Lady chatlabs Bag",
14349
14308
  tags: [
14350
14309
  "Women",
14351
14310
  "Black",
14352
14311
  "Handbags",
14353
14312
  "Hand",
14354
- "Lady Dior",
14313
+ "Lady chatlabs",
14355
14314
  "Crossbody"
14356
14315
  ],
14357
14316
  weight: null,
@@ -14364,39 +14323,39 @@ var recList = [
14364
14323
  weight: null,
14365
14324
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:13",
14366
14325
  enTitle: "Shop now",
14367
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14326
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14368
14327
  link: null,
14369
14328
  linkTitle: null,
14370
14329
  linkType: null,
14371
14330
  menuCategoryId: "65966478d19caa37afe3603f"
14372
14331
  },
14373
14332
  homePage: [
14374
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14375
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14376
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14377
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14378
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14379
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14333
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14334
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14335
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14336
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14337
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14338
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14380
14339
  ],
14381
14340
  collection: null,
14382
- 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",
14341
+ 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",
14383
14342
  linkTitle: null,
14384
14343
  linkType: "WEB",
14385
- 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.",
14344
+ 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.",
14386
14345
  price: 7100,
14387
14346
  currency: "USD-$"
14388
14347
  },
14389
14348
  bindProducts: [
14390
14349
  ],
14391
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsHmNyOcNdgB9Y8aIFYWCHlEZVl4x1709608981919.jpg",
14350
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14392
14351
  url: null,
14393
14352
  imgUrls: [
14394
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg",
14395
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg",
14396
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"
14353
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg",
14354
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg",
14355
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"
14397
14356
  ],
14398
14357
  hashTags: [
14399
- "Lady Dior",
14358
+ "Lady chatlabs",
14400
14359
  "Handbags"
14401
14360
  ]
14402
14361
  },
@@ -14425,22 +14384,17 @@ var recList = [
14425
14384
  weight: null,
14426
14385
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:14",
14427
14386
  enTitle: "Shop now",
14428
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14387
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14429
14388
  link: null,
14430
14389
  linkTitle: null,
14431
14390
  linkType: null,
14432
14391
  menuCategoryId: "65966478d19caa37afe3603f"
14433
14392
  },
14434
14393
  homePage: [
14435
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
14436
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
14437
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
14438
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
14439
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
14440
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
14394
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14441
14395
  ],
14442
14396
  collection: "Eté 2024",
14443
- 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",
14397
+ 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",
14444
14398
  linkTitle: null,
14445
14399
  linkType: "WEB",
14446
14400
  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.",
@@ -14454,7 +14408,7 @@ var recList = [
14454
14408
  isCollected: null,
14455
14409
  video: {
14456
14410
  itemId: "VIDEO693hq1709628690318",
14457
- 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.",
14411
+ 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.",
14458
14412
  tags: [
14459
14413
  "Ready-To-Wear",
14460
14414
  "Handbags",
@@ -14469,13 +14423,13 @@ var recList = [
14469
14423
  bindCta: null,
14470
14424
  bindProduct: {
14471
14425
  itemId: "M3352UBHMM900",
14472
- title: "Small Dior Caro Top Handle Camera Bag Black Macrocannage Calfskin ",
14426
+ title: "Small chatlabs Caro Top Handle Camera Bag Black Macrocannage Calfskin ",
14473
14427
  tags: [
14474
14428
  "Summer 2024",
14475
14429
  "Black",
14476
14430
  "Women",
14477
14431
  "Handbags",
14478
- "Dior Caro"
14432
+ "chatlabs Caro"
14479
14433
  ],
14480
14434
  weight: null,
14481
14435
  traceInfo: "VECTOReVssi1704360966770:PRODUCT:M3352UBHMM900:default:3::branch:Handbags:15",
@@ -14487,35 +14441,35 @@ var recList = [
14487
14441
  weight: null,
14488
14442
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:15",
14489
14443
  enTitle: "Shop now",
14490
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14444
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14491
14445
  link: null,
14492
14446
  linkTitle: null,
14493
14447
  linkType: null,
14494
14448
  menuCategoryId: "65966478d19caa37afe3603f"
14495
14449
  },
14496
14450
  homePage: [
14497
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg",
14498
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg",
14499
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg",
14500
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg",
14501
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg",
14502
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg",
14503
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"
14451
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg",
14452
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg",
14453
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg",
14454
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg",
14455
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg",
14456
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg",
14457
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"
14504
14458
  ],
14505
14459
  collection: "Eté 2024",
14506
- link: "https://www.dior.com/en_us/fashion/products/M3352UBHM_M900",
14460
+ link: "https://www.chatlabs.com/en_us/fashion/products/M3352UBHM_M900",
14507
14461
  linkTitle: null,
14508
14462
  linkType: "WEB",
14509
- 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. ",
14463
+ 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. ",
14510
14464
  price: 3350,
14511
14465
  currency: "USD-$"
14512
14466
  },
14513
14467
  bindProducts: [
14514
14468
  ],
14515
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsZhMDVzP6kuh9Qt86c11whAMglMU1709628656988.jpg",
14469
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14516
14470
  url: null,
14517
14471
  imgUrls: [
14518
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"
14472
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"
14519
14473
  ],
14520
14474
  hashTags: [
14521
14475
  "Ready-To-Wear"
@@ -14529,9 +14483,9 @@ var recList = [
14529
14483
  isCollected: null,
14530
14484
  video: {
14531
14485
  itemId: "VIDEO2rUuG1709617832960",
14532
- 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.",
14486
+ 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.",
14533
14487
  tags: [
14534
- "Dior Toujours Bag",
14488
+ "chatlabs Toujours Bag",
14535
14489
  "Casual",
14536
14490
  "Leather Strap",
14537
14491
  "Handbags"
@@ -14541,7 +14495,7 @@ var recList = [
14541
14495
  bindCta: null,
14542
14496
  bindProduct: {
14543
14497
  itemId: "M2821SNIOM900",
14544
- title: "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
14498
+ title: "Medium chatlabs Toujours Bag Black Macrocannage Crinkled Leather",
14545
14499
  tags: [
14546
14500
  "Medium",
14547
14501
  "Black",
@@ -14559,40 +14513,40 @@ var recList = [
14559
14513
  weight: null,
14560
14514
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:16",
14561
14515
  enTitle: "Shop now",
14562
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14516
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14563
14517
  link: null,
14564
14518
  linkTitle: null,
14565
14519
  linkType: null,
14566
14520
  menuCategoryId: "65966478d19caa37afe3603f"
14567
14521
  },
14568
14522
  homePage: [
14569
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
14570
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
14571
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
14572
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
14573
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
14574
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
14575
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
14523
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
14524
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
14525
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
14526
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
14527
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
14528
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
14529
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
14576
14530
  ],
14577
14531
  collection: "Eté 2024",
14578
- 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",
14532
+ 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",
14579
14533
  linkTitle: null,
14580
14534
  linkType: "WEB",
14581
- 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.",
14535
+ 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.",
14582
14536
  price: 4400,
14583
14537
  currency: "USD-$"
14584
14538
  },
14585
14539
  bindProducts: [
14586
14540
  ],
14587
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fs0BUtn8TYp4l8gWsg5WD9Ht8AP7R1709617796077.jpg",
14541
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14588
14542
  url: null,
14589
14543
  imgUrls: [
14590
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg",
14591
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"
14544
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg",
14545
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"
14592
14546
  ],
14593
14547
  hashTags: [
14594
14548
  "Handbags",
14595
- "Dior Toujours Bag"
14549
+ "chatlabs Toujours Bag"
14596
14550
  ]
14597
14551
  },
14598
14552
  product: null,
@@ -14603,7 +14557,7 @@ var recList = [
14603
14557
  isCollected: null,
14604
14558
  video: {
14605
14559
  itemId: "VIDEOGZGZI1709629679782",
14606
- 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",
14560
+ 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",
14607
14561
  tags: [
14608
14562
  "Handbags"
14609
14563
  ],
@@ -14612,9 +14566,9 @@ var recList = [
14612
14566
  bindCta: null,
14613
14567
  bindProduct: {
14614
14568
  itemId: "M0565OZEDM928",
14615
- title: "Medium Lady Dior Bag",
14569
+ title: "Medium Lady chatlabs Bag",
14616
14570
  tags: [
14617
- "Lady Dior",
14571
+ "Lady chatlabs",
14618
14572
  "Medium",
14619
14573
  "Handbags",
14620
14574
  "Crossbody"
@@ -14629,35 +14583,35 @@ var recList = [
14629
14583
  weight: null,
14630
14584
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:17",
14631
14585
  enTitle: "Shop now",
14632
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14586
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14633
14587
  link: null,
14634
14588
  linkTitle: null,
14635
14589
  linkType: null,
14636
14590
  menuCategoryId: "65966478d19caa37afe3603f"
14637
14591
  },
14638
14592
  homePage: [
14639
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
14640
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
14641
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
14642
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
14643
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
14644
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
14645
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
14593
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
14594
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
14595
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
14596
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
14597
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
14598
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
14599
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
14646
14600
  ],
14647
14601
  collection: "Eté 2024",
14648
- link: "https://www.dior.com/en_us/fashion/products/M0565OZED_M928",
14602
+ link: "https://www.chatlabs.com/en_us/fashion/products/M0565OZED_M928",
14649
14603
  linkTitle: null,
14650
14604
  linkType: "WEB",
14651
- 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",
14605
+ 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",
14652
14606
  price: 6500,
14653
14607
  currency: "USD-$"
14654
14608
  },
14655
14609
  bindProducts: [
14656
14610
  ],
14657
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsG1IT2gcB5iabcTL89Xs9bRHISMb1709629659698.jpg",
14611
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14658
14612
  url: null,
14659
14613
  imgUrls: [
14660
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"
14614
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"
14661
14615
  ],
14662
14616
  hashTags: [
14663
14617
  "Handbags"
@@ -14671,9 +14625,9 @@ var recList = [
14671
14625
  isCollected: null,
14672
14626
  video: {
14673
14627
  itemId: "VIDEOC2IMa1710324169054",
14674
- 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.",
14628
+ 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.",
14675
14629
  tags: [
14676
- "Lady Dior",
14630
+ "Lady chatlabs",
14677
14631
  "Removable Shoulder Strap",
14678
14632
  "Medium",
14679
14633
  "Handbags",
@@ -14684,13 +14638,13 @@ var recList = [
14684
14638
  bindCta: null,
14685
14639
  bindProduct: {
14686
14640
  itemId: "M0565SDBRM900",
14687
- title: "Medium Lady Dior Bag",
14641
+ title: "Medium Lady chatlabs Bag",
14688
14642
  tags: [
14689
14643
  "Women",
14690
14644
  "Black",
14691
14645
  "Handbags",
14692
14646
  "Hand",
14693
- "Lady Dior",
14647
+ "Lady chatlabs",
14694
14648
  "Crossbody"
14695
14649
  ],
14696
14650
  weight: null,
@@ -14703,35 +14657,35 @@ var recList = [
14703
14657
  weight: null,
14704
14658
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:18",
14705
14659
  enTitle: "Shop now",
14706
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14660
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14707
14661
  link: null,
14708
14662
  linkTitle: null,
14709
14663
  linkType: null,
14710
14664
  menuCategoryId: "65966478d19caa37afe3603f"
14711
14665
  },
14712
14666
  homePage: [
14713
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14714
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14715
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14716
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14717
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14718
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14667
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
14668
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
14669
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
14670
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
14671
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
14672
+ "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
14719
14673
  ],
14720
14674
  collection: null,
14721
- 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",
14675
+ 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",
14722
14676
  linkTitle: null,
14723
14677
  linkType: "WEB",
14724
- 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.",
14678
+ 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.",
14725
14679
  price: 7100,
14726
14680
  currency: "USD-$"
14727
14681
  },
14728
14682
  bindProducts: [
14729
14683
  ],
14730
- cover: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsuF6sqlC9LCBLTgxHwMRinXwB6bF1710324135846.png",
14731
- url: "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",
14684
+ cover: "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png",
14685
+ url: "https://chatlabs-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",
14732
14686
  imgUrls: null,
14733
14687
  hashTags: [
14734
- "Lady Dior",
14688
+ "Lady chatlabs",
14735
14689
  "Handbags"
14736
14690
  ]
14737
14691
  },
@@ -14744,9 +14698,9 @@ var recList = [
14744
14698
  video: null,
14745
14699
  product: {
14746
14700
  itemId: "M0565OZEDM928",
14747
- title: "Medium Lady Dior Bag",
14701
+ title: "Medium Lady chatlabs Bag",
14748
14702
  tags: [
14749
- "Lady Dior",
14703
+ "Lady chatlabs",
14750
14704
  "Medium",
14751
14705
  "Handbags",
14752
14706
  "Crossbody"
@@ -14761,26 +14715,20 @@ var recList = [
14761
14715
  weight: null,
14762
14716
  traceInfo: "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:19",
14763
14717
  enTitle: "Shop now",
14764
- icon: "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14718
+ icon: "https://chatlabs-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
14765
14719
  link: null,
14766
14720
  linkTitle: null,
14767
14721
  linkType: null,
14768
14722
  menuCategoryId: "65966478d19caa37afe3603f"
14769
14723
  },
14770
14724
  homePage: [
14771
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
14772
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
14773
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
14774
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
14775
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
14776
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
14777
- "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
14725
+ "https://sxph5-dev.chatlabs.net/pb_static/8922b5b8-a954-4a61-9ffc-80edebdf02b4/202403/71d85dc7c652435681e1f6020077c288.png"
14778
14726
  ],
14779
14727
  collection: "Eté 2024",
14780
- link: "https://www.dior.com/en_us/fashion/products/M0565OZED_M928",
14728
+ link: "https://www.chatlabs.com/en_us/fashion/products/M0565OZED_M928",
14781
14729
  linkTitle: null,
14782
14730
  linkType: "WEB",
14783
- 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",
14731
+ 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",
14784
14732
  price: 6500,
14785
14733
  currency: "USD-$"
14786
14734
  },
@@ -15780,7 +15728,7 @@ const AniLink$1 = (_a) => {
15780
15728
  onClick === null || onClick === void 0 ? void 0 : onClick();
15781
15729
  }
15782
15730
  };
15783
- const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || '查看详情';
15731
+ const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || 'Show More';
15784
15732
  const aniTimStyle = useMemo(() => {
15785
15733
  var _a, _b;
15786
15734
  const ani = event === null || event === void 0 ? void 0 : event.animation;
@@ -16227,7 +16175,7 @@ const AniLinkPopup$1 = (_a) => {
16227
16175
  onClick === null || onClick === void 0 ? void 0 : onClick();
16228
16176
  }
16229
16177
  };
16230
- const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || '查看详情';
16178
+ const title = (cta === null || cta === void 0 ? void 0 : cta.enTitle) || 'Show More';
16231
16179
  const aniTimStyle = useMemo(() => {
16232
16180
  const ani = event === null || event === void 0 ? void 0 : event.animation;
16233
16181
  if (ani) {
@@ -17923,7 +17871,7 @@ var NavBack$1 = memo(NavBack);
17923
17871
  * @Author: binruan@chatlabs.com
17924
17872
  * @Date: 2024-03-20 10:27:31
17925
17873
  * @LastEditors: binruan@chatlabs.com
17926
- * @LastEditTime: 2025-01-03 17:10:56
17874
+ * @LastEditTime: 2024-12-18 10:24:20
17927
17875
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
17928
17876
  *
17929
17877
  */
@@ -18048,7 +17996,6 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight = window.inner
18048
17996
  skipLinkRef.current = false;
18049
17997
  }
18050
17998
  // 页面可见时触发,注意页面初始化时不会触发
18051
- refreshFeSession === null || refreshFeSession === void 0 ? void 0 : refreshFeSession(false);
18052
17999
  handleH5EnterLink();
18053
18000
  if (repCond) {
18054
18001
  SXP_EVENT_BUS.emit(SXP_EVENT_TYPE.PAGE_DID_SHOW, item);
@@ -18891,7 +18838,7 @@ var index$1 = memo(DiyPortalPreview);
18891
18838
  * @Author: binruan@chatlabs.com
18892
18839
  * @Date: 2023-10-31 10:56:01
18893
18840
  * @LastEditors: binruan@chatlabs.com
18894
- * @LastEditTime: 2024-10-23 15:07:29
18841
+ * @LastEditTime: 2024-12-12 14:48:31
18895
18842
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\Popup\index.tsx
18896
18843
  *
18897
18844
  */