pb-sxp-ui 1.0.17 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +13065 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +1683 -0
- package/dist/index.js +13033 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.cjs +7 -0
- package/dist/index.min.cjs.map +1 -0
- package/dist/index.min.js +7 -0
- package/dist/index.min.js.map +1 -0
- package/dist/pb-ui.js +13061 -0
- package/dist/pb-ui.js.map +1 -0
- package/dist/pb-ui.min.js +7 -0
- package/dist/pb-ui.min.js.map +1 -0
- package/es/core/Pagebuilder/PagebuilderClass.d.ts +15 -0
- package/es/core/Pagebuilder/PagebuilderClass.js +42 -0
- package/es/core/Pagebuilder/index.d.ts +3 -0
- package/es/core/Pagebuilder/index.js +96 -0
- package/es/core/Pagebuilder/type.d.ts +55 -0
- package/es/core/Pagebuilder/type.js +1 -0
- package/es/core/components/SxpPageCore/index.d.ts +12 -0
- package/es/core/components/SxpPageCore/index.js +26 -0
- package/es/core/components/SxpPageRender/ExpandableText.d.ts +14 -0
- package/es/core/components/SxpPageRender/ExpandableText.js +52 -0
- package/es/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +6 -0
- package/es/core/components/SxpPageRender/FingerSwipeTip/index.js +19 -0
- package/es/core/components/SxpPageRender/Hashtag/index.d.ts +12 -0
- package/es/core/components/SxpPageRender/Hashtag/index.js +40 -0
- package/es/core/components/SxpPageRender/LikeButton/index.d.ts +11 -0
- package/es/core/components/SxpPageRender/LikeButton/index.js +58 -0
- package/es/core/components/SxpPageRender/Modal/index.d.ts +11 -0
- package/es/core/components/SxpPageRender/Modal/index.js +48 -0
- package/es/core/components/SxpPageRender/Navbar.d.ts +9 -0
- package/es/core/components/SxpPageRender/Navbar.js +10 -0
- package/es/core/components/SxpPageRender/Nudge/index.d.ts +24 -0
- package/es/core/components/SxpPageRender/Nudge/index.js +13 -0
- package/es/core/components/SxpPageRender/PictureGroup/Picture.d.ts +8 -0
- package/es/core/components/SxpPageRender/PictureGroup/Picture.js +54 -0
- package/es/core/components/SxpPageRender/PictureGroup/index.d.ts +13 -0
- package/es/core/components/SxpPageRender/PictureGroup/index.js +31 -0
- package/es/core/components/SxpPageRender/Popup/index.d.ts +3 -0
- package/es/core/components/SxpPageRender/Popup/index.js +62 -0
- package/es/core/components/SxpPageRender/RenderCard.d.ts +11 -0
- package/es/core/components/SxpPageRender/RenderCard.js +43 -0
- package/es/core/components/SxpPageRender/ToggleButton/index.d.ts +10 -0
- package/es/core/components/SxpPageRender/ToggleButton/index.js +13 -0
- package/es/core/components/SxpPageRender/VideoWidget/index.d.ts +12 -0
- package/es/core/components/SxpPageRender/VideoWidget/index.js +219 -0
- package/es/core/components/SxpPageRender/WaterFall/List.d.ts +4 -0
- package/es/core/components/SxpPageRender/WaterFall/List.js +183 -0
- package/es/core/components/SxpPageRender/WaterFall/WaterfallList.d.ts +4 -0
- package/es/core/components/SxpPageRender/WaterFall/WaterfallList.js +319 -0
- package/es/core/components/SxpPageRender/WaterFall/index.d.ts +7 -0
- package/es/core/components/SxpPageRender/WaterFall/index.js +101 -0
- package/es/core/components/SxpPageRender/WaterFall/preview.json +1242 -0
- package/es/core/components/SxpPageRender/fakeData.d.ts +130 -0
- package/es/core/components/SxpPageRender/fakeData.js +899 -0
- package/es/core/components/SxpPageRender/index.d.ts +57 -0
- package/es/core/components/SxpPageRender/index.js +378 -0
- package/es/core/components/SxpPageRender/typing.d.ts +66 -0
- package/es/core/components/SxpPageRender/typing.js +1 -0
- package/es/core/components/SxpPageRender/useIconLink.d.ts +1 -0
- package/es/core/components/SxpPageRender/useIconLink.js +13 -0
- package/es/core/context/DataSourceProvider.d.ts +17 -0
- package/es/core/context/DataSourceProvider.js +45 -0
- package/es/core/context/EditorContext.d.ts +83 -0
- package/es/core/context/EditorContext.js +147 -0
- package/es/core/context/EditorDataProvider.d.ts +20 -0
- package/es/core/context/EditorDataProvider.js +23 -0
- package/es/core/context/SxpDataSourceProvider.d.ts +94 -0
- package/es/core/context/SxpDataSourceProvider.js +208 -0
- package/es/core/create.d.ts +37 -0
- package/es/core/create.js +4 -0
- package/es/core/hoc/withBindDataSource.d.ts +6 -0
- package/es/core/hoc/withBindDataSource.js +61 -0
- package/es/core/hooks/index.d.ts +4 -0
- package/es/core/hooks/index.js +4 -0
- package/es/core/hooks/useCurrentNode.d.ts +10 -0
- package/es/core/hooks/useCurrentNode.js +11 -0
- package/es/core/hooks/useDataSource.d.ts +2 -0
- package/es/core/hooks/useDataSource.js +6 -0
- package/es/core/hooks/useEditor.d.ts +1 -0
- package/es/core/hooks/useEditor.js +5 -0
- package/es/core/hooks/useEventReport.d.ts +5 -0
- package/es/core/hooks/useEventReport.js +73 -0
- package/es/core/hooks/useOnScreen.d.ts +2 -0
- package/es/core/hooks/useOnScreen.js +19 -0
- package/es/core/hooks/useSxpDataSource.d.ts +1 -0
- package/es/core/hooks/useSxpDataSource.js +5 -0
- package/es/core/index.d.ts +3 -0
- package/es/core/index.js +1 -0
- package/es/core/schema.d.ts +58 -0
- package/es/core/schema.js +1 -0
- package/es/core/utils/event.d.ts +7 -0
- package/es/core/utils/event.js +8 -0
- package/es/core/utils/getDataByDS.d.ts +6 -0
- package/es/core/utils/getDataByDS.js +39 -0
- package/es/core/utils/getSxpTokenInfo.d.ts +2 -0
- package/es/core/utils/getSxpTokenInfo.js +26 -0
- package/es/core/utils/localStore.d.ts +5 -0
- package/es/core/utils/localStore.js +22 -0
- package/es/core/utils/materials.d.ts +11 -0
- package/es/core/utils/materials.js +31 -0
- package/es/core/utils/sessionStore.d.ts +3 -0
- package/es/core/utils/sessionStore.js +26 -0
- package/es/core/utils/tool.d.ts +5 -0
- package/es/core/utils/tool.js +48 -0
- package/es/core/utils/unzip.d.ts +1 -0
- package/es/core/utils/unzip.js +10 -0
- package/es/index.d.ts +11 -0
- package/es/index.js +13 -0
- package/es/materials/index.d.ts +1 -0
- package/es/materials/index.js +1 -0
- package/es/materials/sxp/HashTag/index.d.ts +14 -0
- package/es/materials/sxp/HashTag/index.js +6 -0
- package/es/materials/sxp/HashTag/material.d.ts +2 -0
- package/es/materials/sxp/HashTag/material.js +52 -0
- package/es/materials/sxp/HashTag/settingRender.d.ts +125 -0
- package/es/materials/sxp/HashTag/settingRender.js +157 -0
- package/es/materials/sxp/defaultSetting.d.ts +11 -0
- package/es/materials/sxp/defaultSetting.js +7 -0
- package/es/materials/sxp/index.d.ts +3 -0
- package/es/materials/sxp/index.js +3 -0
- package/es/materials/sxp/popup/AppointForm/index.d.ts +18 -0
- package/es/materials/sxp/popup/AppointForm/index.js +76 -0
- package/es/materials/sxp/popup/AppointForm/interactionRender.d.ts +8 -0
- package/es/materials/sxp/popup/AppointForm/interactionRender.js +11 -0
- package/es/materials/sxp/popup/AppointForm/material.d.ts +2 -0
- package/es/materials/sxp/popup/AppointForm/material.js +35 -0
- package/es/materials/sxp/popup/AppointForm/settingRender.d.ts +68 -0
- package/es/materials/sxp/popup/AppointForm/settingRender.js +93 -0
- package/es/materials/sxp/popup/CommodityDetail/index.d.ts +34 -0
- package/es/materials/sxp/popup/CommodityDetail/index.js +110 -0
- package/es/materials/sxp/popup/CommodityDetail/material.d.ts +2 -0
- package/es/materials/sxp/popup/CommodityDetail/material.js +51 -0
- package/es/materials/sxp/popup/CommodityDetail/settingRender.d.ts +137 -0
- package/es/materials/sxp/popup/CommodityDetail/settingRender.js +171 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/index.d.ts +19 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/index.js +163 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/material.d.ts +2 -0
- package/es/materials/sxp/popup/CommodityDetailDiro/material.js +16 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +35 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/index.js +134 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/material.d.ts +2 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/material.js +61 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +137 -0
- package/es/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +175 -0
- package/es/materials/sxp/popup/Prompt/index.d.ts +11 -0
- package/es/materials/sxp/popup/Prompt/index.js +20 -0
- package/es/materials/sxp/popup/Prompt/interactionRender.d.ts +8 -0
- package/es/materials/sxp/popup/Prompt/interactionRender.js +11 -0
- package/es/materials/sxp/popup/Prompt/material.d.ts +2 -0
- package/es/materials/sxp/popup/Prompt/material.js +28 -0
- package/es/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
- package/es/materials/sxp/popup/Prompt/settingRender.js +18 -0
- package/es/materials/sxp/popup/index.d.ts +4 -0
- package/es/materials/sxp/popup/index.js +4 -0
- package/es/materials/sxp/template/Appoint/index.d.ts +15 -0
- package/es/materials/sxp/template/Appoint/index.js +16 -0
- package/es/materials/sxp/template/Appoint/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/Appoint/interactionRender.js +11 -0
- package/es/materials/sxp/template/Appoint/material.d.ts +2 -0
- package/es/materials/sxp/template/Appoint/material.js +46 -0
- package/es/materials/sxp/template/Commodity/index.d.ts +15 -0
- package/es/materials/sxp/template/Commodity/index.js +27 -0
- package/es/materials/sxp/template/Commodity/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/Commodity/interactionRender.js +11 -0
- package/es/materials/sxp/template/Commodity/material.d.ts +2 -0
- package/es/materials/sxp/template/Commodity/material.js +52 -0
- package/es/materials/sxp/template/CommodityDiro/index.d.ts +15 -0
- package/es/materials/sxp/template/CommodityDiro/index.js +27 -0
- package/es/materials/sxp/template/CommodityDiro/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/CommodityDiro/interactionRender.js +11 -0
- package/es/materials/sxp/template/CommodityDiro/material.d.ts +2 -0
- package/es/materials/sxp/template/CommodityDiro/material.js +52 -0
- package/es/materials/sxp/template/CommodityDiroNew/index.d.ts +15 -0
- package/es/materials/sxp/template/CommodityDiroNew/index.js +27 -0
- package/es/materials/sxp/template/CommodityDiroNew/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/CommodityDiroNew/interactionRender.js +11 -0
- package/es/materials/sxp/template/CommodityDiroNew/material.d.ts +2 -0
- package/es/materials/sxp/template/CommodityDiroNew/material.js +53 -0
- package/es/materials/sxp/template/Link/index.d.ts +14 -0
- package/es/materials/sxp/template/Link/index.js +32 -0
- package/es/materials/sxp/template/Link/material.d.ts +2 -0
- package/es/materials/sxp/template/Link/material.js +44 -0
- package/es/materials/sxp/template/MultiCommodity/index.d.ts +16 -0
- package/es/materials/sxp/template/MultiCommodity/index.js +52 -0
- package/es/materials/sxp/template/MultiCommodity/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/MultiCommodity/interactionRender.js +11 -0
- package/es/materials/sxp/template/MultiCommodity/material.d.ts +2 -0
- package/es/materials/sxp/template/MultiCommodity/material.js +52 -0
- package/es/materials/sxp/template/MultiCommodityDiro/index.d.ts +16 -0
- package/es/materials/sxp/template/MultiCommodityDiro/index.js +51 -0
- package/es/materials/sxp/template/MultiCommodityDiro/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/MultiCommodityDiro/interactionRender.js +11 -0
- package/es/materials/sxp/template/MultiCommodityDiro/material.d.ts +2 -0
- package/es/materials/sxp/template/MultiCommodityDiro/material.js +52 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/index.d.ts +16 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/index.js +52 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/interactionRender.d.ts +8 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/interactionRender.js +11 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/material.d.ts +2 -0
- package/es/materials/sxp/template/MultiCommodityDiroNew/material.js +53 -0
- package/es/materials/sxp/template/components/EventProvider.d.ts +13 -0
- package/es/materials/sxp/template/components/EventProvider.js +47 -0
- package/es/materials/sxp/template/components/Img.d.ts +10 -0
- package/es/materials/sxp/template/components/Img.js +19 -0
- package/es/materials/sxp/template/components/Scroll.d.ts +10 -0
- package/es/materials/sxp/template/components/Scroll.js +10 -0
- package/es/materials/sxp/template/components/settingRender.d.ts +129 -0
- package/es/materials/sxp/template/components/settingRender.js +219 -0
- package/es/materials/sxp/template/components/typing.d.ts +6 -0
- package/es/materials/sxp/template/components/typing.js +1 -0
- package/es/materials/sxp/template/index.d.ts +8 -0
- package/es/materials/sxp/template/index.js +8 -0
- package/lib/core/Pagebuilder/PagebuilderClass.d.ts +15 -0
- package/lib/core/Pagebuilder/PagebuilderClass.js +45 -0
- package/lib/core/Pagebuilder/index.d.ts +3 -0
- package/lib/core/Pagebuilder/index.js +99 -0
- package/lib/core/Pagebuilder/type.d.ts +55 -0
- package/lib/core/Pagebuilder/type.js +2 -0
- package/lib/core/components/SxpPageCore/index.d.ts +12 -0
- package/lib/core/components/SxpPageCore/index.js +29 -0
- package/lib/core/components/SxpPageRender/ExpandableText.d.ts +14 -0
- package/lib/core/components/SxpPageRender/ExpandableText.js +55 -0
- package/lib/core/components/SxpPageRender/FingerSwipeTip/index.d.ts +6 -0
- package/lib/core/components/SxpPageRender/FingerSwipeTip/index.js +22 -0
- package/lib/core/components/SxpPageRender/Hashtag/index.d.ts +12 -0
- package/lib/core/components/SxpPageRender/Hashtag/index.js +43 -0
- package/lib/core/components/SxpPageRender/LikeButton/index.d.ts +11 -0
- package/lib/core/components/SxpPageRender/LikeButton/index.js +60 -0
- package/lib/core/components/SxpPageRender/Modal/index.d.ts +11 -0
- package/lib/core/components/SxpPageRender/Modal/index.js +51 -0
- package/lib/core/components/SxpPageRender/Navbar.d.ts +9 -0
- package/lib/core/components/SxpPageRender/Navbar.js +13 -0
- package/lib/core/components/SxpPageRender/Nudge/index.d.ts +24 -0
- package/lib/core/components/SxpPageRender/Nudge/index.js +16 -0
- package/lib/core/components/SxpPageRender/PictureGroup/Picture.d.ts +8 -0
- package/lib/core/components/SxpPageRender/PictureGroup/Picture.js +57 -0
- package/lib/core/components/SxpPageRender/PictureGroup/index.d.ts +13 -0
- package/lib/core/components/SxpPageRender/PictureGroup/index.js +34 -0
- package/lib/core/components/SxpPageRender/Popup/index.d.ts +3 -0
- package/lib/core/components/SxpPageRender/Popup/index.js +65 -0
- package/lib/core/components/SxpPageRender/RenderCard.d.ts +11 -0
- package/lib/core/components/SxpPageRender/RenderCard.js +46 -0
- package/lib/core/components/SxpPageRender/ToggleButton/index.d.ts +10 -0
- package/lib/core/components/SxpPageRender/ToggleButton/index.js +16 -0
- package/lib/core/components/SxpPageRender/VideoWidget/index.d.ts +12 -0
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +222 -0
- package/lib/core/components/SxpPageRender/WaterFall/List.d.ts +4 -0
- package/lib/core/components/SxpPageRender/WaterFall/List.js +186 -0
- package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.d.ts +4 -0
- package/lib/core/components/SxpPageRender/WaterFall/WaterfallList.js +322 -0
- package/lib/core/components/SxpPageRender/WaterFall/index.d.ts +7 -0
- package/lib/core/components/SxpPageRender/WaterFall/index.js +104 -0
- package/lib/core/components/SxpPageRender/WaterFall/preview.json +1242 -0
- package/lib/core/components/SxpPageRender/fakeData.d.ts +130 -0
- package/lib/core/components/SxpPageRender/fakeData.js +902 -0
- package/lib/core/components/SxpPageRender/index.d.ts +57 -0
- package/lib/core/components/SxpPageRender/index.js +381 -0
- package/lib/core/components/SxpPageRender/typing.d.ts +66 -0
- package/lib/core/components/SxpPageRender/typing.js +2 -0
- package/lib/core/components/SxpPageRender/useIconLink.d.ts +1 -0
- package/lib/core/components/SxpPageRender/useIconLink.js +17 -0
- package/lib/core/context/DataSourceProvider.d.ts +17 -0
- package/lib/core/context/DataSourceProvider.js +48 -0
- package/lib/core/context/EditorContext.d.ts +83 -0
- package/lib/core/context/EditorContext.js +151 -0
- package/lib/core/context/EditorDataProvider.d.ts +20 -0
- package/lib/core/context/EditorDataProvider.js +28 -0
- package/lib/core/context/SxpDataSourceProvider.d.ts +94 -0
- package/lib/core/context/SxpDataSourceProvider.js +211 -0
- package/lib/core/create.d.ts +37 -0
- package/lib/core/create.js +8 -0
- package/lib/core/hoc/withBindDataSource.d.ts +6 -0
- package/lib/core/hoc/withBindDataSource.js +63 -0
- package/lib/core/hooks/index.d.ts +4 -0
- package/lib/core/hooks/index.js +7 -0
- package/lib/core/hooks/useCurrentNode.d.ts +10 -0
- package/lib/core/hooks/useCurrentNode.js +14 -0
- package/lib/core/hooks/useDataSource.d.ts +2 -0
- package/lib/core/hooks/useDataSource.js +9 -0
- package/lib/core/hooks/useEditor.d.ts +1 -0
- package/lib/core/hooks/useEditor.js +9 -0
- package/lib/core/hooks/useEventReport.d.ts +5 -0
- package/lib/core/hooks/useEventReport.js +77 -0
- package/lib/core/hooks/useOnScreen.d.ts +2 -0
- package/lib/core/hooks/useOnScreen.js +22 -0
- package/lib/core/hooks/useSxpDataSource.d.ts +1 -0
- package/lib/core/hooks/useSxpDataSource.js +9 -0
- package/lib/core/index.d.ts +3 -0
- package/lib/core/index.js +5 -0
- package/lib/core/schema.d.ts +58 -0
- package/lib/core/schema.js +2 -0
- package/lib/core/utils/event.d.ts +7 -0
- package/lib/core/utils/event.js +12 -0
- package/lib/core/utils/getDataByDS.d.ts +6 -0
- package/lib/core/utils/getDataByDS.js +41 -0
- package/lib/core/utils/getSxpTokenInfo.d.ts +2 -0
- package/lib/core/utils/getSxpTokenInfo.js +30 -0
- package/lib/core/utils/localStore.d.ts +5 -0
- package/lib/core/utils/localStore.js +28 -0
- package/lib/core/utils/materials.d.ts +11 -0
- package/lib/core/utils/materials.js +37 -0
- package/lib/core/utils/sessionStore.d.ts +3 -0
- package/lib/core/utils/sessionStore.js +32 -0
- package/lib/core/utils/tool.d.ts +5 -0
- package/lib/core/utils/tool.js +54 -0
- package/lib/core/utils/unzip.d.ts +1 -0
- package/lib/core/utils/unzip.js +15 -0
- package/lib/index.d.ts +11 -0
- package/lib/index.js +22 -0
- package/lib/materials/index.d.ts +1 -0
- package/lib/materials/index.js +4 -0
- package/lib/materials/sxp/HashTag/index.d.ts +14 -0
- package/lib/materials/sxp/HashTag/index.js +9 -0
- package/lib/materials/sxp/HashTag/material.d.ts +2 -0
- package/lib/materials/sxp/HashTag/material.js +56 -0
- package/lib/materials/sxp/HashTag/settingRender.d.ts +125 -0
- package/lib/materials/sxp/HashTag/settingRender.js +159 -0
- package/lib/materials/sxp/defaultSetting.d.ts +11 -0
- package/lib/materials/sxp/defaultSetting.js +10 -0
- package/lib/materials/sxp/index.d.ts +3 -0
- package/lib/materials/sxp/index.js +6 -0
- package/lib/materials/sxp/popup/AppointForm/index.d.ts +18 -0
- package/lib/materials/sxp/popup/AppointForm/index.js +78 -0
- package/lib/materials/sxp/popup/AppointForm/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/popup/AppointForm/interactionRender.js +13 -0
- package/lib/materials/sxp/popup/AppointForm/material.d.ts +2 -0
- package/lib/materials/sxp/popup/AppointForm/material.js +39 -0
- package/lib/materials/sxp/popup/AppointForm/settingRender.d.ts +68 -0
- package/lib/materials/sxp/popup/AppointForm/settingRender.js +95 -0
- package/lib/materials/sxp/popup/CommodityDetail/index.d.ts +34 -0
- package/lib/materials/sxp/popup/CommodityDetail/index.js +112 -0
- package/lib/materials/sxp/popup/CommodityDetail/material.d.ts +2 -0
- package/lib/materials/sxp/popup/CommodityDetail/material.js +55 -0
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.d.ts +137 -0
- package/lib/materials/sxp/popup/CommodityDetail/settingRender.js +173 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/index.d.ts +19 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/index.js +165 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/material.d.ts +2 -0
- package/lib/materials/sxp/popup/CommodityDetailDiro/material.js +20 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.d.ts +35 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/index.js +136 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/material.d.ts +2 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/material.js +65 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.d.ts +137 -0
- package/lib/materials/sxp/popup/CommodityDetailDiroNew/settingRender.js +177 -0
- package/lib/materials/sxp/popup/Prompt/index.d.ts +11 -0
- package/lib/materials/sxp/popup/Prompt/index.js +22 -0
- package/lib/materials/sxp/popup/Prompt/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/popup/Prompt/interactionRender.js +13 -0
- package/lib/materials/sxp/popup/Prompt/material.d.ts +2 -0
- package/lib/materials/sxp/popup/Prompt/material.js +32 -0
- package/lib/materials/sxp/popup/Prompt/settingRender.d.ts +12 -0
- package/lib/materials/sxp/popup/Prompt/settingRender.js +20 -0
- package/lib/materials/sxp/popup/index.d.ts +4 -0
- package/lib/materials/sxp/popup/index.js +7 -0
- package/lib/materials/sxp/template/Appoint/index.d.ts +15 -0
- package/lib/materials/sxp/template/Appoint/index.js +18 -0
- package/lib/materials/sxp/template/Appoint/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/Appoint/interactionRender.js +13 -0
- package/lib/materials/sxp/template/Appoint/material.d.ts +2 -0
- package/lib/materials/sxp/template/Appoint/material.js +50 -0
- package/lib/materials/sxp/template/Commodity/index.d.ts +15 -0
- package/lib/materials/sxp/template/Commodity/index.js +29 -0
- package/lib/materials/sxp/template/Commodity/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/Commodity/interactionRender.js +13 -0
- package/lib/materials/sxp/template/Commodity/material.d.ts +2 -0
- package/lib/materials/sxp/template/Commodity/material.js +56 -0
- package/lib/materials/sxp/template/CommodityDiro/index.d.ts +15 -0
- package/lib/materials/sxp/template/CommodityDiro/index.js +29 -0
- package/lib/materials/sxp/template/CommodityDiro/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/CommodityDiro/interactionRender.js +13 -0
- package/lib/materials/sxp/template/CommodityDiro/material.d.ts +2 -0
- package/lib/materials/sxp/template/CommodityDiro/material.js +56 -0
- package/lib/materials/sxp/template/CommodityDiroNew/index.d.ts +15 -0
- package/lib/materials/sxp/template/CommodityDiroNew/index.js +29 -0
- package/lib/materials/sxp/template/CommodityDiroNew/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/CommodityDiroNew/interactionRender.js +13 -0
- package/lib/materials/sxp/template/CommodityDiroNew/material.d.ts +2 -0
- package/lib/materials/sxp/template/CommodityDiroNew/material.js +57 -0
- package/lib/materials/sxp/template/Link/index.d.ts +14 -0
- package/lib/materials/sxp/template/Link/index.js +34 -0
- package/lib/materials/sxp/template/Link/material.d.ts +2 -0
- package/lib/materials/sxp/template/Link/material.js +48 -0
- package/lib/materials/sxp/template/MultiCommodity/index.d.ts +16 -0
- package/lib/materials/sxp/template/MultiCommodity/index.js +54 -0
- package/lib/materials/sxp/template/MultiCommodity/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/MultiCommodity/interactionRender.js +13 -0
- package/lib/materials/sxp/template/MultiCommodity/material.d.ts +2 -0
- package/lib/materials/sxp/template/MultiCommodity/material.js +56 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/index.d.ts +16 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/index.js +53 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/interactionRender.js +13 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/material.d.ts +2 -0
- package/lib/materials/sxp/template/MultiCommodityDiro/material.js +56 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/index.d.ts +16 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/index.js +54 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/interactionRender.d.ts +8 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/interactionRender.js +13 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/material.d.ts +2 -0
- package/lib/materials/sxp/template/MultiCommodityDiroNew/material.js +57 -0
- package/lib/materials/sxp/template/components/EventProvider.d.ts +13 -0
- package/lib/materials/sxp/template/components/EventProvider.js +49 -0
- package/lib/materials/sxp/template/components/Img.d.ts +10 -0
- package/lib/materials/sxp/template/components/Img.js +22 -0
- package/lib/materials/sxp/template/components/Scroll.d.ts +10 -0
- package/lib/materials/sxp/template/components/Scroll.js +13 -0
- package/lib/materials/sxp/template/components/settingRender.d.ts +129 -0
- package/lib/materials/sxp/template/components/settingRender.js +221 -0
- package/lib/materials/sxp/template/components/typing.d.ts +6 -0
- package/lib/materials/sxp/template/components/typing.js +2 -0
- package/lib/materials/sxp/template/index.d.ts +8 -0
- package/lib/materials/sxp/template/index.js +11 -0
- package/package.json +1 -1
@@ -0,0 +1,1242 @@
|
|
1
|
+
{
|
2
|
+
"productUserId": null,
|
3
|
+
"requestId": "3d989325-e7d6-4a74-8a97-98febdf5b567",
|
4
|
+
"channel": null,
|
5
|
+
"rtc": null,
|
6
|
+
"tag": {
|
7
|
+
"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.",
|
8
|
+
"link": "www.baidu.com",
|
9
|
+
"linkTitle": null,
|
10
|
+
"linkType": "WEB"
|
11
|
+
},
|
12
|
+
"recList": [
|
13
|
+
{
|
14
|
+
"position": "0",
|
15
|
+
"isCollected": null,
|
16
|
+
"video": {
|
17
|
+
"itemId": "VIDEOY2BMu1710323630175",
|
18
|
+
"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.",
|
19
|
+
"tags": [
|
20
|
+
"Dior Toujours Bag",
|
21
|
+
"Casual",
|
22
|
+
"Leather Strap",
|
23
|
+
"Handbags"
|
24
|
+
],
|
25
|
+
"weight": null,
|
26
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOY2BMu1710323630175:default:3::branch:Handbags:0",
|
27
|
+
"bindCta": null,
|
28
|
+
"bindProduct": {
|
29
|
+
"itemId": "M2821SNIOM900",
|
30
|
+
"title": "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
|
31
|
+
"tags": [
|
32
|
+
"Medium",
|
33
|
+
"Black",
|
34
|
+
"Women",
|
35
|
+
"Handbags",
|
36
|
+
"Bucket Bag"
|
37
|
+
],
|
38
|
+
"weight": null,
|
39
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:0",
|
40
|
+
"bindCta": {
|
41
|
+
"itemId": "CTAzgoPn1709005149328",
|
42
|
+
"title": "立即购买",
|
43
|
+
"tags": [],
|
44
|
+
"weight": null,
|
45
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:0",
|
46
|
+
"enTitle": "Shop now",
|
47
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
48
|
+
"link": null,
|
49
|
+
"linkTitle": null,
|
50
|
+
"linkType": null,
|
51
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
52
|
+
},
|
53
|
+
"homePage": [
|
54
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
|
55
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
|
56
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
|
57
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
|
58
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
|
59
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
|
60
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
|
61
|
+
],
|
62
|
+
"collection": "Eté 2024",
|
63
|
+
"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",
|
64
|
+
"linkTitle": null,
|
65
|
+
"linkType": "WEB",
|
66
|
+
"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.",
|
67
|
+
"price": 4400.0,
|
68
|
+
"currency": "USD-$"
|
69
|
+
},
|
70
|
+
"bindProducts": [],
|
71
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fswbY3wT0hCmrYkrqDzFKnHb3NMux1710323481052.png",
|
72
|
+
"url": "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs3Ifqv7fk2Tn9nPtwOTO2YjxAuRO1710323470472.mp4",
|
73
|
+
"imgUrls": null,
|
74
|
+
"hashTags": [
|
75
|
+
"Dior Toujours Bag",
|
76
|
+
"Casual",
|
77
|
+
"Leather Strap",
|
78
|
+
"Handbags"
|
79
|
+
]
|
80
|
+
},
|
81
|
+
"product": null,
|
82
|
+
"cta": null
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"position": "1",
|
86
|
+
"isCollected": null,
|
87
|
+
"video": {
|
88
|
+
"itemId": "VIDEO6JCOb1710323364018",
|
89
|
+
"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.",
|
90
|
+
"tags": [
|
91
|
+
"Handbags",
|
92
|
+
"Manufacturing Craftsmanship",
|
93
|
+
"Dior Book Tote"
|
94
|
+
],
|
95
|
+
"weight": null,
|
96
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEO6JCOb1710323364018:default:3::branch:Handbags:1",
|
97
|
+
"bindCta": null,
|
98
|
+
"bindProduct": {
|
99
|
+
"itemId": "M1296ZRIWM828",
|
100
|
+
"title": "Medium Dior Book Tote",
|
101
|
+
"tags": [
|
102
|
+
"Maria Grazia Chiuri",
|
103
|
+
"Hand",
|
104
|
+
"Shoulder",
|
105
|
+
"Handbags",
|
106
|
+
"Blue",
|
107
|
+
"Women"
|
108
|
+
],
|
109
|
+
"weight": null,
|
110
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:1",
|
111
|
+
"bindCta": {
|
112
|
+
"itemId": "CTAzgoPn1709005149328",
|
113
|
+
"title": "立即购买",
|
114
|
+
"tags": [],
|
115
|
+
"weight": null,
|
116
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:1",
|
117
|
+
"enTitle": "Shop now",
|
118
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
119
|
+
"link": null,
|
120
|
+
"linkTitle": null,
|
121
|
+
"linkType": null,
|
122
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
123
|
+
},
|
124
|
+
"homePage": [
|
125
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
|
126
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
127
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
128
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
129
|
+
],
|
130
|
+
"collection": "Eté 2024",
|
131
|
+
"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",
|
132
|
+
"linkTitle": null,
|
133
|
+
"linkType": "WEB",
|
134
|
+
"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.",
|
135
|
+
"price": 3350.0,
|
136
|
+
"currency": "USD-$"
|
137
|
+
},
|
138
|
+
"bindProducts": [],
|
139
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsAHlkdbqYj5F84o2faRzU1E3AvG11710323339209.png",
|
140
|
+
"url": "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs7KIGk2IB0MsoDL1ANWB1Mb2hqu41710323314146.mp4",
|
141
|
+
"imgUrls": null,
|
142
|
+
"hashTags": [
|
143
|
+
"Handbags",
|
144
|
+
"Dior Book Tote"
|
145
|
+
]
|
146
|
+
},
|
147
|
+
"product": null,
|
148
|
+
"cta": null
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"position": "2",
|
152
|
+
"isCollected": null,
|
153
|
+
"video": null,
|
154
|
+
"product": {
|
155
|
+
"itemId": "M2820OTKVM911",
|
156
|
+
"title": "Large Dior Toujours Bag Black Cannage Tweed",
|
157
|
+
"tags": [
|
158
|
+
"Black",
|
159
|
+
"Women",
|
160
|
+
"Handbags",
|
161
|
+
"Bucket Bag",
|
162
|
+
"Dior Toujours Bag"
|
163
|
+
],
|
164
|
+
"weight": null,
|
165
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M2820OTKVM911:default:3::branch:Handbags:2",
|
166
|
+
"bindCta": {
|
167
|
+
"itemId": "CTAzgoPn1709005149328",
|
168
|
+
"title": "立即购买",
|
169
|
+
"tags": [],
|
170
|
+
"weight": null,
|
171
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:2",
|
172
|
+
"enTitle": "Shop now",
|
173
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
174
|
+
"link": null,
|
175
|
+
"linkTitle": null,
|
176
|
+
"linkType": null,
|
177
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
178
|
+
},
|
179
|
+
"homePage": [
|
180
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsJTjyFchOFEJSTRYxXvL2XPU1dP61710238469418.jpg",
|
181
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fstdFA1dFT55QjtQPU2qHNENo5peF1710836061716.jpg",
|
182
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fs9xf8AlIApbHezVL3BsxjUGIrN231710836061181.jpg",
|
183
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs9iZ20MjLAPkXmFKvD8HzhLaBJ671710238470272.jpg",
|
184
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsSSodev3wicDfE1DYNWPQVeRjErt1710238464035.jpg",
|
185
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fs3YAOuN6Pd9NFvH1Rdooj6eLI18S1710238465296.jpg",
|
186
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240312/fsBwIEp6OzI49isvHgiKD0cPSFtrD1710238459007.jpg"
|
187
|
+
],
|
188
|
+
"collection": "Eté 2024",
|
189
|
+
"link": "https://www.dior.com/en_us/fashion/products/M2820OTKV_M911-large-dior-toujours-bag",
|
190
|
+
"linkTitle": null,
|
191
|
+
"linkType": "WEB",
|
192
|
+
"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.",
|
193
|
+
"price": 4200.0,
|
194
|
+
"currency": "USD-$"
|
195
|
+
},
|
196
|
+
"cta": null
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"position": "3",
|
200
|
+
"isCollected": null,
|
201
|
+
"video": {
|
202
|
+
"itemId": "VIDEOOL1qU1709616182569",
|
203
|
+
"title": "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.. Saddle bag with strap Black grained calfskin",
|
204
|
+
"tags": [
|
205
|
+
"Maria Grazia Chiuri",
|
206
|
+
"Saddle Bags",
|
207
|
+
"Removable Shoulder Strap",
|
208
|
+
"Shoulder",
|
209
|
+
"Crossbody",
|
210
|
+
"Cross-body & Shoulder Bags",
|
211
|
+
"Handbags"
|
212
|
+
],
|
213
|
+
"weight": null,
|
214
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOOL1qU1709616182569:default:3::branch:Handbags:3",
|
215
|
+
"bindCta": null,
|
216
|
+
"bindProduct": {
|
217
|
+
"itemId": "M0455CBAAM900",
|
218
|
+
"title": "Saddle Bag with Strap",
|
219
|
+
"tags": [
|
220
|
+
"Saddle Bags",
|
221
|
+
"Handbags",
|
222
|
+
"Maria Grazia Chiuri"
|
223
|
+
],
|
224
|
+
"weight": null,
|
225
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:3",
|
226
|
+
"bindCta": {
|
227
|
+
"itemId": "CTAzgoPn1709005149328",
|
228
|
+
"title": "立即购买",
|
229
|
+
"tags": [],
|
230
|
+
"weight": null,
|
231
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:3",
|
232
|
+
"enTitle": "Shop now",
|
233
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
234
|
+
"link": null,
|
235
|
+
"linkTitle": null,
|
236
|
+
"linkType": null,
|
237
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
238
|
+
},
|
239
|
+
"homePage": [
|
240
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
|
241
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
|
242
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
|
243
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
|
244
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
|
245
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
|
246
|
+
],
|
247
|
+
"collection": "Eté 2024",
|
248
|
+
"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",
|
249
|
+
"linkTitle": null,
|
250
|
+
"linkType": "WEB",
|
251
|
+
"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.",
|
252
|
+
"price": 4400.0,
|
253
|
+
"currency": "USD-$"
|
254
|
+
},
|
255
|
+
"bindProducts": [],
|
256
|
+
"cover": null,
|
257
|
+
"url": null,
|
258
|
+
"imgUrls": [
|
259
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsvbBN3IRfwctVIhdqgq3doWmhbb21710399187965.jpg"
|
260
|
+
],
|
261
|
+
"hashTags": [
|
262
|
+
"Maria Grazia Chiuri",
|
263
|
+
"Saddle Bags",
|
264
|
+
"Handbags"
|
265
|
+
]
|
266
|
+
},
|
267
|
+
"product": null,
|
268
|
+
"cta": null
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"position": "4",
|
272
|
+
"isCollected": null,
|
273
|
+
"video": null,
|
274
|
+
"product": {
|
275
|
+
"itemId": "S5909CTZQM928",
|
276
|
+
"title": "Saddle Shoulder Pouch Blue Dior Oblique Jacquard ",
|
277
|
+
"tags": [
|
278
|
+
"Saddle Bags",
|
279
|
+
"Handbags",
|
280
|
+
"Small-Leather-Goods",
|
281
|
+
"Small",
|
282
|
+
"Mini Bags"
|
283
|
+
],
|
284
|
+
"weight": null,
|
285
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:S5909CTZQM928:default:3::branch:Handbags:4",
|
286
|
+
"bindCta": {
|
287
|
+
"itemId": "CTAzgoPn1709005149328",
|
288
|
+
"title": "立即购买",
|
289
|
+
"tags": [],
|
290
|
+
"weight": null,
|
291
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:4",
|
292
|
+
"enTitle": "Shop now",
|
293
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
294
|
+
"link": null,
|
295
|
+
"linkTitle": null,
|
296
|
+
"linkType": null,
|
297
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
298
|
+
},
|
299
|
+
"homePage": [
|
300
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fs34CpwKJOyjEDgoHypoLYakF8oR31710316280669.png",
|
301
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsLOSOEf9pmz7wKnFaifWNw3TZ7Gy1710316287874.png",
|
302
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsWHmVcrzHKKj6EfhfnQkxYIOt20a1710316295683.png",
|
303
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fslyBNMyQwjpjY4EKzyrqzTMlOGRQ1710316313161.png"
|
304
|
+
],
|
305
|
+
"collection": "Eté 2024",
|
306
|
+
"link": "https://www.dior.com/en_us/fashion/products/S5909CTZQ",
|
307
|
+
"linkTitle": null,
|
308
|
+
"linkType": "WEB",
|
309
|
+
"info": null,
|
310
|
+
"price": 4900.0,
|
311
|
+
"currency": "USD-$"
|
312
|
+
},
|
313
|
+
"cta": null
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"position": "5",
|
317
|
+
"isCollected": null,
|
318
|
+
"video": {
|
319
|
+
"itemId": "VIDEOrZguC1710324513737",
|
320
|
+
"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.",
|
321
|
+
"tags": [
|
322
|
+
"Handbags",
|
323
|
+
"Dior Book Tote"
|
324
|
+
],
|
325
|
+
"weight": null,
|
326
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOrZguC1710324513737:default:3::branch:Handbags:5",
|
327
|
+
"bindCta": null,
|
328
|
+
"bindProduct": {
|
329
|
+
"itemId": "M1296ZRIWM828",
|
330
|
+
"title": "Medium Dior Book Tote",
|
331
|
+
"tags": [
|
332
|
+
"Maria Grazia Chiuri",
|
333
|
+
"Hand",
|
334
|
+
"Shoulder",
|
335
|
+
"Handbags",
|
336
|
+
"Blue",
|
337
|
+
"Women"
|
338
|
+
],
|
339
|
+
"weight": null,
|
340
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:5",
|
341
|
+
"bindCta": {
|
342
|
+
"itemId": "CTAzgoPn1709005149328",
|
343
|
+
"title": "立即购买",
|
344
|
+
"tags": [],
|
345
|
+
"weight": null,
|
346
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:5",
|
347
|
+
"enTitle": "Shop now",
|
348
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
349
|
+
"link": null,
|
350
|
+
"linkTitle": null,
|
351
|
+
"linkType": null,
|
352
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
353
|
+
},
|
354
|
+
"homePage": [
|
355
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
|
356
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
357
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
358
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
359
|
+
],
|
360
|
+
"collection": "Eté 2024",
|
361
|
+
"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",
|
362
|
+
"linkTitle": null,
|
363
|
+
"linkType": "WEB",
|
364
|
+
"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.",
|
365
|
+
"price": 3350.0,
|
366
|
+
"currency": "USD-$"
|
367
|
+
},
|
368
|
+
"bindProducts": [],
|
369
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fstXNWStczbY8HbIKEqMwfCkv5CI51710324494939.png",
|
370
|
+
"url": "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOqu34FxaJTdascLcj6DHoYIIAs01710324439851.mp4",
|
371
|
+
"imgUrls": null,
|
372
|
+
"hashTags": [
|
373
|
+
"Handbags",
|
374
|
+
"Dior Book Tote"
|
375
|
+
]
|
376
|
+
},
|
377
|
+
"product": null,
|
378
|
+
"cta": null
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"position": "6",
|
382
|
+
"isCollected": null,
|
383
|
+
"video": null,
|
384
|
+
"product": {
|
385
|
+
"itemId": "M1296ZRIWM828",
|
386
|
+
"title": "Medium Dior Book Tote",
|
387
|
+
"tags": [
|
388
|
+
"Maria Grazia Chiuri",
|
389
|
+
"Hand",
|
390
|
+
"Shoulder",
|
391
|
+
"Handbags",
|
392
|
+
"Blue",
|
393
|
+
"Women"
|
394
|
+
],
|
395
|
+
"weight": null,
|
396
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:6",
|
397
|
+
"bindCta": {
|
398
|
+
"itemId": "CTAzgoPn1709005149328",
|
399
|
+
"title": "立即购买",
|
400
|
+
"tags": [],
|
401
|
+
"weight": null,
|
402
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:6",
|
403
|
+
"enTitle": "Shop now",
|
404
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
405
|
+
"link": null,
|
406
|
+
"linkTitle": null,
|
407
|
+
"linkType": null,
|
408
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
409
|
+
},
|
410
|
+
"homePage": [
|
411
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
|
412
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
413
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
414
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
415
|
+
],
|
416
|
+
"collection": "Eté 2024",
|
417
|
+
"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",
|
418
|
+
"linkTitle": null,
|
419
|
+
"linkType": "WEB",
|
420
|
+
"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.",
|
421
|
+
"price": 3350.0,
|
422
|
+
"currency": "USD-$"
|
423
|
+
},
|
424
|
+
"cta": null
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"position": "7",
|
428
|
+
"isCollected": null,
|
429
|
+
"video": {
|
430
|
+
"itemId": "VIDEOEtr621710300614047",
|
431
|
+
"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",
|
432
|
+
"tags": [
|
433
|
+
"Handbags",
|
434
|
+
"Leather Strap",
|
435
|
+
"Spring-Summer 2024 Fashion Show",
|
436
|
+
"Backstage",
|
437
|
+
"Dior Toujours Bag"
|
438
|
+
],
|
439
|
+
"weight": null,
|
440
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOEtr621710300614047:default:3::branch:Handbags:7",
|
441
|
+
"bindCta": null,
|
442
|
+
"bindProduct": null,
|
443
|
+
"bindProducts": [],
|
444
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fshkOldZwfsSqTgvxHJzNBwS66ySc1710300910103.jpg",
|
445
|
+
"url": null,
|
446
|
+
"imgUrls": [
|
447
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsryDXTtPWXjYFWoSUEBUi48RHZCh1710398617300.jpg"
|
448
|
+
],
|
449
|
+
"hashTags": [
|
450
|
+
"Backstage",
|
451
|
+
"Handbags",
|
452
|
+
"Spring-Summer 2024 Fashion Show",
|
453
|
+
"Dior Toujours Bag"
|
454
|
+
]
|
455
|
+
},
|
456
|
+
"product": null,
|
457
|
+
"cta": null
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"position": "8",
|
461
|
+
"isCollected": null,
|
462
|
+
"video": {
|
463
|
+
"itemId": "VIDEOO8Zjt1709616802987",
|
464
|
+
"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.",
|
465
|
+
"tags": [
|
466
|
+
"Blue",
|
467
|
+
"Medium",
|
468
|
+
"Shoulder",
|
469
|
+
"Hand",
|
470
|
+
"Handbags",
|
471
|
+
"Dior Book Tote"
|
472
|
+
],
|
473
|
+
"weight": null,
|
474
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOO8Zjt1709616802987:default:3::branch:Handbags:8",
|
475
|
+
"bindCta": null,
|
476
|
+
"bindProduct": {
|
477
|
+
"itemId": "M1296ZRIWM828",
|
478
|
+
"title": "Medium Dior Book Tote",
|
479
|
+
"tags": [
|
480
|
+
"Maria Grazia Chiuri",
|
481
|
+
"Hand",
|
482
|
+
"Shoulder",
|
483
|
+
"Handbags",
|
484
|
+
"Blue",
|
485
|
+
"Women"
|
486
|
+
],
|
487
|
+
"weight": null,
|
488
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M1296ZRIWM828:default:3::branch:Handbags:8",
|
489
|
+
"bindCta": {
|
490
|
+
"itemId": "CTAzgoPn1709005149328",
|
491
|
+
"title": "立即购买",
|
492
|
+
"tags": [],
|
493
|
+
"weight": null,
|
494
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:8",
|
495
|
+
"enTitle": "Shop now",
|
496
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
497
|
+
"link": null,
|
498
|
+
"linkTitle": null,
|
499
|
+
"linkType": null,
|
500
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
501
|
+
},
|
502
|
+
"homePage": [
|
503
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fs69g46K9wPCwi5VRAP2QAgRHM0Pc1709696901624.jpg",
|
504
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsAIliGV0ZJP8MNa8DECYtwsK4ker1709696900761.jpg",
|
505
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsMJ4JfZ0Vhzq6H71NdIPg6YozbIz1709696897845.jpg",
|
506
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240306/fsWXI06zGOmACXn9wD3EegRLkB7dg1709696911033.jpg"
|
507
|
+
],
|
508
|
+
"collection": "Eté 2024",
|
509
|
+
"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",
|
510
|
+
"linkTitle": null,
|
511
|
+
"linkType": "WEB",
|
512
|
+
"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.",
|
513
|
+
"price": 3350.0,
|
514
|
+
"currency": "USD-$"
|
515
|
+
},
|
516
|
+
"bindProducts": [],
|
517
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsmS72zfInwmblYTnuYzRuZKAOlhr1709616742898.jpg",
|
518
|
+
"url": null,
|
519
|
+
"imgUrls": [
|
520
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsU2gDw28XFd1nOAqlUjb1r1h6mpT1710400349981.jpg"
|
521
|
+
],
|
522
|
+
"hashTags": [
|
523
|
+
"Dior Book Tote",
|
524
|
+
"Handbags"
|
525
|
+
]
|
526
|
+
},
|
527
|
+
"product": null,
|
528
|
+
"cta": null
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"position": "9",
|
532
|
+
"isCollected": null,
|
533
|
+
"video": null,
|
534
|
+
"product": {
|
535
|
+
"itemId": "M2821SNIOM900",
|
536
|
+
"title": "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
|
537
|
+
"tags": [
|
538
|
+
"Medium",
|
539
|
+
"Black",
|
540
|
+
"Women",
|
541
|
+
"Handbags",
|
542
|
+
"Bucket Bag"
|
543
|
+
],
|
544
|
+
"weight": null,
|
545
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:9",
|
546
|
+
"bindCta": {
|
547
|
+
"itemId": "CTAzgoPn1709005149328",
|
548
|
+
"title": "立即购买",
|
549
|
+
"tags": [],
|
550
|
+
"weight": null,
|
551
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:9",
|
552
|
+
"enTitle": "Shop now",
|
553
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
554
|
+
"link": null,
|
555
|
+
"linkTitle": null,
|
556
|
+
"linkType": null,
|
557
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
558
|
+
},
|
559
|
+
"homePage": [
|
560
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
|
561
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
|
562
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
|
563
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
|
564
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
|
565
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
|
566
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
|
567
|
+
],
|
568
|
+
"collection": "Eté 2024",
|
569
|
+
"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",
|
570
|
+
"linkTitle": null,
|
571
|
+
"linkType": "WEB",
|
572
|
+
"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.",
|
573
|
+
"price": 4400.0,
|
574
|
+
"currency": "USD-$"
|
575
|
+
},
|
576
|
+
"cta": null
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"position": "10",
|
580
|
+
"isCollected": null,
|
581
|
+
"video": {
|
582
|
+
"itemId": "VIDEOesZlV1710323980494",
|
583
|
+
"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.",
|
584
|
+
"tags": [
|
585
|
+
"Lady Dior",
|
586
|
+
"Removable Shoulder Strap",
|
587
|
+
"Medium",
|
588
|
+
"Handbags",
|
589
|
+
"Crossbody"
|
590
|
+
],
|
591
|
+
"weight": null,
|
592
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOesZlV1710323980494:default:3::branch:Handbags:10",
|
593
|
+
"bindCta": null,
|
594
|
+
"bindProduct": {
|
595
|
+
"itemId": "M0565SDBRM900",
|
596
|
+
"title": "Medium Lady Dior Bag",
|
597
|
+
"tags": [
|
598
|
+
"Women",
|
599
|
+
"Black",
|
600
|
+
"Handbags",
|
601
|
+
"Hand",
|
602
|
+
"Lady Dior",
|
603
|
+
"Crossbody"
|
604
|
+
],
|
605
|
+
"weight": null,
|
606
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:10",
|
607
|
+
"bindCta": {
|
608
|
+
"itemId": "CTAzgoPn1709005149328",
|
609
|
+
"title": "立即购买",
|
610
|
+
"tags": [],
|
611
|
+
"weight": null,
|
612
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:10",
|
613
|
+
"enTitle": "Shop now",
|
614
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
615
|
+
"link": null,
|
616
|
+
"linkTitle": null,
|
617
|
+
"linkType": null,
|
618
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
619
|
+
},
|
620
|
+
"homePage": [
|
621
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
|
622
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
|
623
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
|
624
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
|
625
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
|
626
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
|
627
|
+
],
|
628
|
+
"collection": null,
|
629
|
+
"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",
|
630
|
+
"linkTitle": null,
|
631
|
+
"linkType": "WEB",
|
632
|
+
"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.",
|
633
|
+
"price": 7100.0,
|
634
|
+
"currency": "USD-$"
|
635
|
+
},
|
636
|
+
"bindProducts": [],
|
637
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsiwMQ88zO5Xdnl939krMyBMbz7Js1710323763013.png",
|
638
|
+
"url": "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsxyS8nr7nn0LMe7EqOt3ETXqLu7d1710323753073.mp4",
|
639
|
+
"imgUrls": null,
|
640
|
+
"hashTags": [
|
641
|
+
"Lady Dior",
|
642
|
+
"Handbags"
|
643
|
+
]
|
644
|
+
},
|
645
|
+
"product": null,
|
646
|
+
"cta": null
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"position": "11",
|
650
|
+
"isCollected": null,
|
651
|
+
"video": {
|
652
|
+
"itemId": "VIDEOdvsXq1710324342942",
|
653
|
+
"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.",
|
654
|
+
"tags": [
|
655
|
+
"Summer 2024",
|
656
|
+
"Lady Dior",
|
657
|
+
"Casual",
|
658
|
+
"Lightweight",
|
659
|
+
"Medium",
|
660
|
+
"Handbags"
|
661
|
+
],
|
662
|
+
"weight": null,
|
663
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOdvsXq1710324342942:default:3::branch:Handbags:11",
|
664
|
+
"bindCta": null,
|
665
|
+
"bindProduct": {
|
666
|
+
"itemId": "M1151OTRLM900",
|
667
|
+
"title": "Medium Lady D-Sire My ABCDior Bag",
|
668
|
+
"tags": [
|
669
|
+
"Handbags",
|
670
|
+
"Summer 2024",
|
671
|
+
"Lady Dior",
|
672
|
+
"Black",
|
673
|
+
"Medium",
|
674
|
+
"Women",
|
675
|
+
"Lady D-Sire"
|
676
|
+
],
|
677
|
+
"weight": null,
|
678
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M1151OTRLM900:default:3::branch:Handbags:11",
|
679
|
+
"bindCta": {
|
680
|
+
"itemId": "CTAzgoPn1709005149328",
|
681
|
+
"title": "立即购买",
|
682
|
+
"tags": [],
|
683
|
+
"weight": null,
|
684
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:11",
|
685
|
+
"enTitle": "Shop now",
|
686
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
687
|
+
"link": null,
|
688
|
+
"linkTitle": null,
|
689
|
+
"linkType": null,
|
690
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
691
|
+
},
|
692
|
+
"homePage": [
|
693
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBvqPYhaE9Ct1JzBd4gm8g9YOiAZ1710499102900.jpg",
|
694
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6sf9nB7WpJuLNIZT3c8O8Fmf3Gu1710499102936.jpg",
|
695
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsSxYBxyVx2yRrUgEaYmarWhlUbk41710499102531.jpg",
|
696
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsyhykK1B7W9613MAfipfIuE1foim1710499102345.jpg",
|
697
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs6FXJdaXib8lP0NPloe1XQGpoiKc1710499103268.jpg",
|
698
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsCRx7T4ejNvgKNensH6LT4dPt6251710499103615.jpg"
|
699
|
+
],
|
700
|
+
"collection": null,
|
701
|
+
"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",
|
702
|
+
"linkTitle": null,
|
703
|
+
"linkType": "WEB",
|
704
|
+
"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",
|
705
|
+
"price": 6100.0,
|
706
|
+
"currency": "USD-$"
|
707
|
+
},
|
708
|
+
"bindProducts": [],
|
709
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsOsdUSXr57U5Twhhkv17th3yHqBJ1710324292456.png",
|
710
|
+
"url": "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsZyr3slVtlsParX6D0DqsM0QEx8d1710324283147.mp4",
|
711
|
+
"imgUrls": null,
|
712
|
+
"hashTags": [
|
713
|
+
"Summer 2024",
|
714
|
+
"Lady Dior",
|
715
|
+
"Handbags"
|
716
|
+
]
|
717
|
+
},
|
718
|
+
"product": null,
|
719
|
+
"cta": null
|
720
|
+
},
|
721
|
+
{
|
722
|
+
"position": "12",
|
723
|
+
"isCollected": null,
|
724
|
+
"video": {
|
725
|
+
"itemId": "VIDEOy76Fr1710324746846",
|
726
|
+
"title": "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.. Saddle bag with strap Black grained calfskin",
|
727
|
+
"tags": [
|
728
|
+
"Maria Grazia Chiuri",
|
729
|
+
"Saddle Bags",
|
730
|
+
"Removable Shoulder Strap",
|
731
|
+
"Hand",
|
732
|
+
"Shoulder",
|
733
|
+
"Crossbody",
|
734
|
+
"Handbags"
|
735
|
+
],
|
736
|
+
"weight": null,
|
737
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOy76Fr1710324746846:default:3::branch:Handbags:12",
|
738
|
+
"bindCta": null,
|
739
|
+
"bindProduct": {
|
740
|
+
"itemId": "M0455CBAAM900",
|
741
|
+
"title": "Saddle Bag with Strap",
|
742
|
+
"tags": [
|
743
|
+
"Saddle Bags",
|
744
|
+
"Handbags",
|
745
|
+
"Maria Grazia Chiuri"
|
746
|
+
],
|
747
|
+
"weight": null,
|
748
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:12",
|
749
|
+
"bindCta": {
|
750
|
+
"itemId": "CTAzgoPn1709005149328",
|
751
|
+
"title": "立即购买",
|
752
|
+
"tags": [],
|
753
|
+
"weight": null,
|
754
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:12",
|
755
|
+
"enTitle": "Shop now",
|
756
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
757
|
+
"link": null,
|
758
|
+
"linkTitle": null,
|
759
|
+
"linkType": null,
|
760
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
761
|
+
},
|
762
|
+
"homePage": [
|
763
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
|
764
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
|
765
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
|
766
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
|
767
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
|
768
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
|
769
|
+
],
|
770
|
+
"collection": "Eté 2024",
|
771
|
+
"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",
|
772
|
+
"linkTitle": null,
|
773
|
+
"linkType": "WEB",
|
774
|
+
"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.",
|
775
|
+
"price": 4400.0,
|
776
|
+
"currency": "USD-$"
|
777
|
+
},
|
778
|
+
"bindProducts": [],
|
779
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsqwogfFahvNml7vmATxwfKLcNlh91710324602536.png",
|
780
|
+
"url": "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsVRd4z4V8UScNc7Wc96xv4xDVByb1710324589932.mp4",
|
781
|
+
"imgUrls": null,
|
782
|
+
"hashTags": [
|
783
|
+
"Maria Grazia Chiuri",
|
784
|
+
"Saddle Bags",
|
785
|
+
"Handbags"
|
786
|
+
]
|
787
|
+
},
|
788
|
+
"product": null,
|
789
|
+
"cta": null
|
790
|
+
},
|
791
|
+
{
|
792
|
+
"position": "13",
|
793
|
+
"isCollected": null,
|
794
|
+
"video": {
|
795
|
+
"itemId": "VIDEOvqhF71709609258469",
|
796
|
+
"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.",
|
797
|
+
"tags": [
|
798
|
+
"Thin",
|
799
|
+
"Removable Shoulder Strap",
|
800
|
+
"Medium",
|
801
|
+
"Lady Dior",
|
802
|
+
"Crossbody",
|
803
|
+
"Handbags",
|
804
|
+
"Cross-body & Shoulder Bags"
|
805
|
+
],
|
806
|
+
"weight": null,
|
807
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOvqhF71709609258469:default:3::branch:Handbags:13",
|
808
|
+
"bindCta": null,
|
809
|
+
"bindProduct": {
|
810
|
+
"itemId": "M0565SDBRM900",
|
811
|
+
"title": "Medium Lady Dior Bag",
|
812
|
+
"tags": [
|
813
|
+
"Women",
|
814
|
+
"Black",
|
815
|
+
"Handbags",
|
816
|
+
"Hand",
|
817
|
+
"Lady Dior",
|
818
|
+
"Crossbody"
|
819
|
+
],
|
820
|
+
"weight": null,
|
821
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:13",
|
822
|
+
"bindCta": {
|
823
|
+
"itemId": "CTAzgoPn1709005149328",
|
824
|
+
"title": "立即购买",
|
825
|
+
"tags": [],
|
826
|
+
"weight": null,
|
827
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:13",
|
828
|
+
"enTitle": "Shop now",
|
829
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
830
|
+
"link": null,
|
831
|
+
"linkTitle": null,
|
832
|
+
"linkType": null,
|
833
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
834
|
+
},
|
835
|
+
"homePage": [
|
836
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
|
837
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
|
838
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
|
839
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
|
840
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
|
841
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
|
842
|
+
],
|
843
|
+
"collection": null,
|
844
|
+
"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",
|
845
|
+
"linkTitle": null,
|
846
|
+
"linkType": "WEB",
|
847
|
+
"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.",
|
848
|
+
"price": 7100.0,
|
849
|
+
"currency": "USD-$"
|
850
|
+
},
|
851
|
+
"bindProducts": [],
|
852
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsHmNyOcNdgB9Y8aIFYWCHlEZVl4x1709608981919.jpg",
|
853
|
+
"url": null,
|
854
|
+
"imgUrls": [
|
855
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fslhMX6mwCM4i5XFY6dpcMZdPocYv1710398865153.jpg",
|
856
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJQCe9rZmsEjuIUpdck9Hs2gpNU81710398856427.jpg",
|
857
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsnHUJufSHptF88bNsyUGmSSKYH4A1710398855734.jpg"
|
858
|
+
],
|
859
|
+
"hashTags": [
|
860
|
+
"Lady Dior",
|
861
|
+
"Handbags"
|
862
|
+
]
|
863
|
+
},
|
864
|
+
"product": null,
|
865
|
+
"cta": null
|
866
|
+
},
|
867
|
+
{
|
868
|
+
"position": "14",
|
869
|
+
"isCollected": null,
|
870
|
+
"video": null,
|
871
|
+
"product": {
|
872
|
+
"itemId": "M0455CBAAM900",
|
873
|
+
"title": "Saddle Bag with Strap",
|
874
|
+
"tags": [
|
875
|
+
"Saddle Bags",
|
876
|
+
"Handbags",
|
877
|
+
"Maria Grazia Chiuri"
|
878
|
+
],
|
879
|
+
"weight": null,
|
880
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0455CBAAM900:default:3::branch:Handbags:14",
|
881
|
+
"bindCta": {
|
882
|
+
"itemId": "CTAzgoPn1709005149328",
|
883
|
+
"title": "立即购买",
|
884
|
+
"tags": [],
|
885
|
+
"weight": null,
|
886
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:14",
|
887
|
+
"enTitle": "Shop now",
|
888
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
889
|
+
"link": null,
|
890
|
+
"linkTitle": null,
|
891
|
+
"linkType": null,
|
892
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
893
|
+
},
|
894
|
+
"homePage": [
|
895
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsiwfgnCrVBGcGPh6gaFsvbYBIpxX1709285334896.png",
|
896
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsXpilTgUS4u4oFWr0hUew8DQITi11709285353202.png",
|
897
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsWxJm6YIeRYmDtDoB5WtYMjRX8bm1709285366208.png",
|
898
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsj69PxKh1SAZ6p0902FbBT0vg2at1709285373714.png",
|
899
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fs78nKueByU2cNulReOw8gJ1ZsieF1709285412981.png",
|
900
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240301/fsmAEriTIohZAUMUE6gUCWvXwbbRE1709285429332.png"
|
901
|
+
],
|
902
|
+
"collection": "Eté 2024",
|
903
|
+
"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",
|
904
|
+
"linkTitle": null,
|
905
|
+
"linkType": "WEB",
|
906
|
+
"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.",
|
907
|
+
"price": 4400.0,
|
908
|
+
"currency": "USD-$"
|
909
|
+
},
|
910
|
+
"cta": null
|
911
|
+
},
|
912
|
+
{
|
913
|
+
"position": "15",
|
914
|
+
"isCollected": null,
|
915
|
+
"video": {
|
916
|
+
"itemId": "VIDEO693hq1709628690318",
|
917
|
+
"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.",
|
918
|
+
"tags": [
|
919
|
+
"Ready-To-Wear",
|
920
|
+
"Handbags",
|
921
|
+
"Signature Hardware Design",
|
922
|
+
"Monogram/Logo Print",
|
923
|
+
"Calfskin Leather",
|
924
|
+
"Summer 2024",
|
925
|
+
"Black"
|
926
|
+
],
|
927
|
+
"weight": null,
|
928
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEO693hq1709628690318:default:3::branch:Handbags:15",
|
929
|
+
"bindCta": null,
|
930
|
+
"bindProduct": {
|
931
|
+
"itemId": "M3352UBHMM900",
|
932
|
+
"title": "Small Dior Caro Top Handle Camera Bag Black Macrocannage Calfskin ",
|
933
|
+
"tags": [
|
934
|
+
"Summer 2024",
|
935
|
+
"Black",
|
936
|
+
"Women",
|
937
|
+
"Handbags",
|
938
|
+
"Dior Caro"
|
939
|
+
],
|
940
|
+
"weight": null,
|
941
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M3352UBHMM900:default:3::branch:Handbags:15",
|
942
|
+
"bindCta": {
|
943
|
+
"itemId": "CTAzgoPn1709005149328",
|
944
|
+
"title": "立即购买",
|
945
|
+
"tags": [],
|
946
|
+
"weight": null,
|
947
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:15",
|
948
|
+
"enTitle": "Shop now",
|
949
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
950
|
+
"link": null,
|
951
|
+
"linkTitle": null,
|
952
|
+
"linkType": null,
|
953
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
954
|
+
},
|
955
|
+
"homePage": [
|
956
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsx3wufMP9P6ovvCrXL58eVVA61gI1710499528917.jpg",
|
957
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs82a414vXXhbgMXsw3Zm8TWyDMvI1710499528543.jpg",
|
958
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJaZoFhur3jfMEciQdk5GMV8O2un1710499528346.jpg",
|
959
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fstO8CRKfBzpJUmAMyCDHDo23ji9N1710499528346.jpg",
|
960
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsagaUiox7KECRhbPn6MScg3s4Nwd1710499528602.jpg",
|
961
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsBsyFADiYBLWHaAIQfNRsgweVOWj1710499529947.jpg",
|
962
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqJEwfvOLpXQ6nQt76o92XdLwzs11710499529939.jpg"
|
963
|
+
],
|
964
|
+
"collection": "Eté 2024",
|
965
|
+
"link": "https://www.dior.com/en_us/fashion/products/M3352UBHM_M900",
|
966
|
+
"linkTitle": null,
|
967
|
+
"linkType": "WEB",
|
968
|
+
"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. ",
|
969
|
+
"price": 3350.0,
|
970
|
+
"currency": "USD-$"
|
971
|
+
},
|
972
|
+
"bindProducts": [],
|
973
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsZhMDVzP6kuh9Qt86c11whAMglMU1709628656988.jpg",
|
974
|
+
"url": null,
|
975
|
+
"imgUrls": [
|
976
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsWrEKA6oRWUmOY14D1POTJjgiks51710401973577.jpg"
|
977
|
+
],
|
978
|
+
"hashTags": [
|
979
|
+
"Ready-To-Wear"
|
980
|
+
]
|
981
|
+
},
|
982
|
+
"product": null,
|
983
|
+
"cta": null
|
984
|
+
},
|
985
|
+
{
|
986
|
+
"position": "16",
|
987
|
+
"isCollected": null,
|
988
|
+
"video": {
|
989
|
+
"itemId": "VIDEO2rUuG1709617832960",
|
990
|
+
"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.",
|
991
|
+
"tags": [
|
992
|
+
"Dior Toujours Bag",
|
993
|
+
"Casual",
|
994
|
+
"Leather Strap",
|
995
|
+
"Handbags"
|
996
|
+
],
|
997
|
+
"weight": null,
|
998
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEO2rUuG1709617832960:default:3::branch:Handbags:16",
|
999
|
+
"bindCta": null,
|
1000
|
+
"bindProduct": {
|
1001
|
+
"itemId": "M2821SNIOM900",
|
1002
|
+
"title": "Medium Dior Toujours Bag Black Macrocannage Crinkled Leather",
|
1003
|
+
"tags": [
|
1004
|
+
"Medium",
|
1005
|
+
"Black",
|
1006
|
+
"Women",
|
1007
|
+
"Handbags",
|
1008
|
+
"Bucket Bag"
|
1009
|
+
],
|
1010
|
+
"weight": null,
|
1011
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M2821SNIOM900:default:3::branch:Handbags:16",
|
1012
|
+
"bindCta": {
|
1013
|
+
"itemId": "CTAzgoPn1709005149328",
|
1014
|
+
"title": "立即购买",
|
1015
|
+
"tags": [],
|
1016
|
+
"weight": null,
|
1017
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:16",
|
1018
|
+
"enTitle": "Shop now",
|
1019
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
1020
|
+
"link": null,
|
1021
|
+
"linkTitle": null,
|
1022
|
+
"linkType": null,
|
1023
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
1024
|
+
},
|
1025
|
+
"homePage": [
|
1026
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsy6AN0OWw3rj8Luw3RTSP9n2kDLq1710497237677.jpg",
|
1027
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fszTc3uEUrtppdN9QVVU2XBnaaaBY1710497237986.jpg",
|
1028
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKbBMTRa0tTTX661wu7DzLw9OP0r1710497237980.jpg",
|
1029
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsOYHlYCwgzalxzmIJcsZmIsJ2L3g1710497237145.jpg",
|
1030
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsKJqNVm1ZBlrgZ8XLC0YAaO6ws2F1710497237650.jpg",
|
1031
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsm2VoVancBQ20nDHceESUPNLyrUy1710497238312.jpg",
|
1032
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs2B5YYmv8OztP3d9rlM2a9KmYswl1710497237339.jpg"
|
1033
|
+
],
|
1034
|
+
"collection": "Eté 2024",
|
1035
|
+
"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",
|
1036
|
+
"linkTitle": null,
|
1037
|
+
"linkType": "WEB",
|
1038
|
+
"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.",
|
1039
|
+
"price": 4400.0,
|
1040
|
+
"currency": "USD-$"
|
1041
|
+
},
|
1042
|
+
"bindProducts": [],
|
1043
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fs0BUtn8TYp4l8gWsg5WD9Ht8AP7R1709617796077.jpg",
|
1044
|
+
"url": null,
|
1045
|
+
"imgUrls": [
|
1046
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsmecPfhI3OtZwJmKAXLv8scBSSdK1710399333565.jpg",
|
1047
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsfsWBLxbC36B7Pm7Ae1uL98EmoaH1710399333017.jpg"
|
1048
|
+
],
|
1049
|
+
"hashTags": [
|
1050
|
+
"Handbags",
|
1051
|
+
"Dior Toujours Bag"
|
1052
|
+
]
|
1053
|
+
},
|
1054
|
+
"product": null,
|
1055
|
+
"cta": null
|
1056
|
+
},
|
1057
|
+
{
|
1058
|
+
"position": "17",
|
1059
|
+
"isCollected": null,
|
1060
|
+
"video": {
|
1061
|
+
"itemId": "VIDEOGZGZI1709629679782",
|
1062
|
+
"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",
|
1063
|
+
"tags": [
|
1064
|
+
"Handbags"
|
1065
|
+
],
|
1066
|
+
"weight": null,
|
1067
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOGZGZI1709629679782:default:3::branch:Handbags:17",
|
1068
|
+
"bindCta": null,
|
1069
|
+
"bindProduct": {
|
1070
|
+
"itemId": "M0565OZEDM928",
|
1071
|
+
"title": "Medium Lady Dior Bag",
|
1072
|
+
"tags": [
|
1073
|
+
"Lady Dior",
|
1074
|
+
"Medium",
|
1075
|
+
"Handbags",
|
1076
|
+
"Crossbody"
|
1077
|
+
],
|
1078
|
+
"weight": null,
|
1079
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0565OZEDM928:default:3::branch:Handbags:17",
|
1080
|
+
"bindCta": {
|
1081
|
+
"itemId": "CTAzgoPn1709005149328",
|
1082
|
+
"title": "立即购买",
|
1083
|
+
"tags": [],
|
1084
|
+
"weight": null,
|
1085
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:17",
|
1086
|
+
"enTitle": "Shop now",
|
1087
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
1088
|
+
"link": null,
|
1089
|
+
"linkTitle": null,
|
1090
|
+
"linkType": null,
|
1091
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
1092
|
+
},
|
1093
|
+
"homePage": [
|
1094
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
|
1095
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
|
1096
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
|
1097
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
|
1098
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
|
1099
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
|
1100
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
|
1101
|
+
],
|
1102
|
+
"collection": "Eté 2024",
|
1103
|
+
"link": "https://www.dior.com/en_us/fashion/products/M0565OZED_M928",
|
1104
|
+
"linkTitle": null,
|
1105
|
+
"linkType": "WEB",
|
1106
|
+
"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",
|
1107
|
+
"price": 6500.0,
|
1108
|
+
"currency": "USD-$"
|
1109
|
+
},
|
1110
|
+
"bindProducts": [],
|
1111
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240305/fsG1IT2gcB5iabcTL89Xs9bRHISMb1709629659698.jpg",
|
1112
|
+
"url": null,
|
1113
|
+
"imgUrls": [
|
1114
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240314/fsJB1txgzSsQLBBJSTzqGI40BvLkr1710399454552.jpg"
|
1115
|
+
],
|
1116
|
+
"hashTags": [
|
1117
|
+
"Handbags"
|
1118
|
+
]
|
1119
|
+
},
|
1120
|
+
"product": null,
|
1121
|
+
"cta": null
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"position": "18",
|
1125
|
+
"isCollected": null,
|
1126
|
+
"video": {
|
1127
|
+
"itemId": "VIDEOC2IMa1710324169054",
|
1128
|
+
"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.",
|
1129
|
+
"tags": [
|
1130
|
+
"Lady Dior",
|
1131
|
+
"Removable Shoulder Strap",
|
1132
|
+
"Medium",
|
1133
|
+
"Handbags",
|
1134
|
+
"Crossbody"
|
1135
|
+
],
|
1136
|
+
"weight": null,
|
1137
|
+
"traceInfo": "VECTOReVssi1704360966770:VIDEO:VIDEOC2IMa1710324169054:default:3::branch:Handbags:18",
|
1138
|
+
"bindCta": null,
|
1139
|
+
"bindProduct": {
|
1140
|
+
"itemId": "M0565SDBRM900",
|
1141
|
+
"title": "Medium Lady Dior Bag",
|
1142
|
+
"tags": [
|
1143
|
+
"Women",
|
1144
|
+
"Black",
|
1145
|
+
"Handbags",
|
1146
|
+
"Hand",
|
1147
|
+
"Lady Dior",
|
1148
|
+
"Crossbody"
|
1149
|
+
],
|
1150
|
+
"weight": null,
|
1151
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0565SDBRM900:default:3::branch:Handbags:18",
|
1152
|
+
"bindCta": {
|
1153
|
+
"itemId": "CTAzgoPn1709005149328",
|
1154
|
+
"title": "立即购买",
|
1155
|
+
"tags": [],
|
1156
|
+
"weight": null,
|
1157
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:18",
|
1158
|
+
"enTitle": "Shop now",
|
1159
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
1160
|
+
"link": null,
|
1161
|
+
"linkTitle": null,
|
1162
|
+
"linkType": null,
|
1163
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
1164
|
+
},
|
1165
|
+
"homePage": [
|
1166
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsnyiCm9oirbXLqmqY7231O8O2Yhb1710498970982.jpg",
|
1167
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fskwIRRKCtuw9cb9btuubt2D5bXfB1710498970676.jpg",
|
1168
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsqXFTCyhxspeYCD3uo4UiuN5vQ7w1710498970671.jpg",
|
1169
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8rDRSKJmWUNI42MjrMWVlI0D9Fz1710498970729.jpg",
|
1170
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsca9Cjqo3WMJVU0OL0OjQo8xOoMx1710498972076.jpg",
|
1171
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsjl1bxi56X0QrKwfvl8YocBVJ2N81710498971352.jpg"
|
1172
|
+
],
|
1173
|
+
"collection": null,
|
1174
|
+
"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",
|
1175
|
+
"linkTitle": null,
|
1176
|
+
"linkType": "WEB",
|
1177
|
+
"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.",
|
1178
|
+
"price": 7100.0,
|
1179
|
+
"currency": "USD-$"
|
1180
|
+
},
|
1181
|
+
"bindProducts": [],
|
1182
|
+
"cover": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsuF6sqlC9LCBLTgxHwMRinXwB6bF1710324135846.png",
|
1183
|
+
"url": "https://dior-sxp-cdn.chatlabs.net/prod/sound/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240313/fsFwNsGElWR2SXQ2tWwHkaiqMZN5H1710324095954.mp4",
|
1184
|
+
"imgUrls": null,
|
1185
|
+
"hashTags": [
|
1186
|
+
"Lady Dior",
|
1187
|
+
"Handbags"
|
1188
|
+
]
|
1189
|
+
},
|
1190
|
+
"product": null,
|
1191
|
+
"cta": null
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
"position": "19",
|
1195
|
+
"isCollected": null,
|
1196
|
+
"video": null,
|
1197
|
+
"product": {
|
1198
|
+
"itemId": "M0565OZEDM928",
|
1199
|
+
"title": "Medium Lady Dior Bag",
|
1200
|
+
"tags": [
|
1201
|
+
"Lady Dior",
|
1202
|
+
"Medium",
|
1203
|
+
"Handbags",
|
1204
|
+
"Crossbody"
|
1205
|
+
],
|
1206
|
+
"weight": null,
|
1207
|
+
"traceInfo": "VECTOReVssi1704360966770:PRODUCT:M0565OZEDM928:default:3::branch:Handbags:19",
|
1208
|
+
"bindCta": {
|
1209
|
+
"itemId": "CTAzgoPn1709005149328",
|
1210
|
+
"title": "立即购买",
|
1211
|
+
"tags": [],
|
1212
|
+
"weight": null,
|
1213
|
+
"traceInfo": "VECTOReVssi1704360966770:CTA:CTAzgoPn1709005149328:default:3::branch:Handbags:19",
|
1214
|
+
"enTitle": "Shop now",
|
1215
|
+
"icon": "https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240227/fsIkhOh3SihCkTDQ3oI41kwCsjq6A1709005134510.png",
|
1216
|
+
"link": null,
|
1217
|
+
"linkTitle": null,
|
1218
|
+
"linkType": null,
|
1219
|
+
"menuCategoryId": "65966478d19caa37afe3603f"
|
1220
|
+
},
|
1221
|
+
"homePage": [
|
1222
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsbVwOx4grEmqCNmvOnKpIS0vTPPc1710499656033.jpg",
|
1223
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsJrpY9R8uGenvzM7NnzI4lPMCF8g1710836215790.jpg",
|
1224
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsYQG9gipUNt6UbzFPXTwLTNgj5BF1710836214937.jpg",
|
1225
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240319/fsqPEXjWl7l3wPAxJIZbnnhZPXDCw1710836216838.jpg",
|
1226
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsNHlPmAsNYPsGDJ5w0G213wJkwFf1710499654946.jpg",
|
1227
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fs8dAObnEoAYe1V6pwJOGTs4vCBJO1710499655963.jpg",
|
1228
|
+
"https://dior-sxp-cdn.chatlabs.net/prod/img/edc1a0de-330e-40e4-bdf3-17d57d57c19b/sxp-portal/20240315/fsJpaBPC8OxQ4aYwxsMcqZpGtPWnq1710499655730.jpg"
|
1229
|
+
],
|
1230
|
+
"collection": "Eté 2024",
|
1231
|
+
"link": "https://www.dior.com/en_us/fashion/products/M0565OZED_M928",
|
1232
|
+
"linkTitle": null,
|
1233
|
+
"linkType": "WEB",
|
1234
|
+
"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",
|
1235
|
+
"price": 6500.0,
|
1236
|
+
"currency": "USD-$"
|
1237
|
+
},
|
1238
|
+
"cta": null
|
1239
|
+
}
|
1240
|
+
],
|
1241
|
+
"hashTag": "Handbags"
|
1242
|
+
}
|