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,902 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.fakeRecList = void 0;
|
4
|
+
exports.fakeRecList = [
|
5
|
+
{
|
6
|
+
position: '0',
|
7
|
+
video: {
|
8
|
+
itemId: 'VIDEO1D6Zc1698027355751',
|
9
|
+
title: 'The pinnacle of excellence, a Tiffany & Co. engagement ring—like the iconic Tiffany®Setting—is a collaboration between artist and jeweler; a balance of time-honored craftsmanship, modern design and the world’s most beautiful diamonds.',
|
10
|
+
tags: ['love', 'Engagement', 'Ring', 'Crafting Victory', 'hand-set', 'superior craftsmanship'],
|
11
|
+
weight: null,
|
12
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEO1D6Zc1698027355751:RANDOM:3',
|
13
|
+
cover: null,
|
14
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231023/fsNTFINfvRcKNA1PJ9djltXmAuBiM1698027298070.mp4',
|
15
|
+
imgUrls: null
|
16
|
+
},
|
17
|
+
cta: null,
|
18
|
+
product: null,
|
19
|
+
isCollect: false
|
20
|
+
},
|
21
|
+
{
|
22
|
+
position: '1',
|
23
|
+
video: null,
|
24
|
+
cta: {
|
25
|
+
itemId: 'CTAvM02W1698133220107',
|
26
|
+
title: '送给他',
|
27
|
+
tags: ['Gift-Giving', 'Gift for Him'],
|
28
|
+
weight: null,
|
29
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAvM02W1698133220107:RANDOM:3',
|
30
|
+
enTitle: 'Shop Gifts for Him',
|
31
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsK0XrKTfE9U4aq4uj7augEx7sWAZ1698133204886.png',
|
32
|
+
link: 'https://www.tiffany.co.uk/gifts/shop/gifts-for-him/',
|
33
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
34
|
+
},
|
35
|
+
product: {
|
36
|
+
itemId: '33263473',
|
37
|
+
title: 'Diamond Wire Bracelet in 18k White Gold',
|
38
|
+
tags: [
|
39
|
+
'Bracelet',
|
40
|
+
'Tiffany T',
|
41
|
+
'Wire Bracelet',
|
42
|
+
'18K White Gold',
|
43
|
+
'Round Brilliant Diamonds',
|
44
|
+
'paired',
|
45
|
+
'modern',
|
46
|
+
'Daily Wear',
|
47
|
+
'Gift-Giving',
|
48
|
+
'Large'
|
49
|
+
],
|
50
|
+
weight: null,
|
51
|
+
traceInfo: 'VECTORdUnAp1696905029427:PRODUCT:33263473:RANDOM:3',
|
52
|
+
homePage: [
|
53
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsjqbYcAsu13YNpIdWHk6mvdS4HcX1697782370118.png',
|
54
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsmSfYpvD8Wr46IgkiO0cwDXcK6zb1697782383527.png',
|
55
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsepEPPs6NZWRaaCMPBiA6fPQVMuV1697782387833.png',
|
56
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsr9wJh2Y4DNlk6jm9P07ySQ3zqyb1697793212129.png'
|
57
|
+
],
|
58
|
+
collection: 'Tiffany T',
|
59
|
+
link: 'https://www.tiffany.co.uk/jewelry/bracelets/tiffany-t-diamond-wire-bracelet-GRP07783/',
|
60
|
+
info: "Brilliant diamonds enhance this bracelet's timeless design. As multifaceted as it is iconic, the Tiffany T collection is a tangible reminder of the connections we feel but can't always see. Pair this wire bracelet with other Tiffany T designs for a look that's equally modern and sophisticated.",
|
61
|
+
price: 5100
|
62
|
+
},
|
63
|
+
isCollect: null
|
64
|
+
},
|
65
|
+
{
|
66
|
+
position: '2',
|
67
|
+
video: {
|
68
|
+
itemId: 'VIDEO8mkdg1697897671385',
|
69
|
+
title: 'For a singular statement that says it all, go for a bold Tiffany HardWear necklace in 18k gold. The best gifts are the ones that stand the test of time.',
|
70
|
+
tags: ['18K Yellow Gold', 'Tiffany Hardware', 'Bold', 'stunning', 'Mid Range', 'Necklace'],
|
71
|
+
weight: null,
|
72
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEO8mkdg1697897671385:RANDOM:3',
|
73
|
+
cover: null,
|
74
|
+
url: null,
|
75
|
+
imgUrls: [
|
76
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsdak1FNrG1jQ5LV2FYRufHOD1Edb1697897659310.jpg'
|
77
|
+
]
|
78
|
+
},
|
79
|
+
cta: {
|
80
|
+
itemId: 'CTAv6PtM1695786177769',
|
81
|
+
title: '在网站上购买',
|
82
|
+
tags: ['product'],
|
83
|
+
weight: null,
|
84
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAv6PtM1695786177769:RANDOM:3',
|
85
|
+
enTitle: 'Shop Now',
|
86
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231013/fsloiKQKOgRCVojqJelsybqijZcVy1697183332522.png',
|
87
|
+
link: 'https://www.tiffany.co.uk',
|
88
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
89
|
+
},
|
90
|
+
product: {
|
91
|
+
itemId: '60153063',
|
92
|
+
title: 'Graduated Link Necklace',
|
93
|
+
tags: ['Tiffany Hardware', 'Necklace', '18K Yellow Gold', 'Bold', 'stunning', 'blue box', 'Mid Range'],
|
94
|
+
weight: null,
|
95
|
+
traceInfo: null,
|
96
|
+
homePage: [
|
97
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fs559dMKcS3AXsc1oT6Sq4Goy1xfr1697794583657.png',
|
98
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fs0BYKIpfMuklJERneoTEv3j6DdzA1697794589267.png',
|
99
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsOEEVeke8bBqAdUgkcqZ2z3TnMOE1697794588195.png',
|
100
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsMj0U9Eb7TFBShJX6RDtT37VekuJ1697794593163.png',
|
101
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsIBu3AKenUr7UJutT2slbywg4a7O1697794594546.png'
|
102
|
+
],
|
103
|
+
collection: 'Tiffany HardWear',
|
104
|
+
link: 'https://www.tiffany.co.uk/jewelry/necklaces-pendants/tiffany-hardwear-link-necklace-GRP09651/',
|
105
|
+
info: 'Tiffany HardWear is elegantly subversive and captures the spirit of the women of New York City. A bold, graduated chain of gauge links captures the urban edge of the city, making a stunning statement.',
|
106
|
+
price: 16700
|
107
|
+
},
|
108
|
+
isCollect: true
|
109
|
+
},
|
110
|
+
{
|
111
|
+
position: '3',
|
112
|
+
video: {
|
113
|
+
itemId: 'VIDEOPZgSM1698132470923',
|
114
|
+
title: 'All Tiffany & Co. round brilliant diamonds are triple excellent—the highest cut grade in the industry-- maximizing light return and ensuring showstopping sparkle for eternity.',
|
115
|
+
tags: [
|
116
|
+
'love',
|
117
|
+
'Engagement',
|
118
|
+
'Ring',
|
119
|
+
'high jewelry',
|
120
|
+
'High Range',
|
121
|
+
'mixed-cut diamonds',
|
122
|
+
'Wedding',
|
123
|
+
'Gift-Giving',
|
124
|
+
'Gift for her',
|
125
|
+
'Tiffany® Setting'
|
126
|
+
],
|
127
|
+
weight: null,
|
128
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOPZgSM1698132470923:RANDOM:3',
|
129
|
+
cover: null,
|
130
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fs6fM0kLhv61OckDCnucqfHq0LgBc1698132460854.mp4',
|
131
|
+
imgUrls: null
|
132
|
+
},
|
133
|
+
cta: null,
|
134
|
+
product: null,
|
135
|
+
isCollect: false
|
136
|
+
},
|
137
|
+
{
|
138
|
+
position: '4',
|
139
|
+
video: {
|
140
|
+
itemId: 'VIDEODPfSL1698396792341',
|
141
|
+
title: 'Defined by smooth contours and sleek curves, dreamworthy Elsa Peretti® designs are irresistibly sensual and tactile.',
|
142
|
+
tags: [
|
143
|
+
'Holiday',
|
144
|
+
'Elsa Peretti',
|
145
|
+
'Necklace',
|
146
|
+
'Low Range',
|
147
|
+
'18K Yellow Gold',
|
148
|
+
'Diamond',
|
149
|
+
'Daily Wear',
|
150
|
+
'Gift-Giving'
|
151
|
+
],
|
152
|
+
weight: null,
|
153
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEODPfSL1698396792341:RANDOM:3',
|
154
|
+
cover: null,
|
155
|
+
url: null,
|
156
|
+
imgUrls: [
|
157
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231027/fsEGuIRvengFaMojwDsZh4ysqCDFB1698396718479.jpg'
|
158
|
+
]
|
159
|
+
},
|
160
|
+
cta: {
|
161
|
+
itemId: 'CTAvM02W1698133220107',
|
162
|
+
title: '送给他',
|
163
|
+
tags: ['Gift-Giving', 'Gift for Him'],
|
164
|
+
weight: null,
|
165
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAvM02W1698133220107:RANDOM:3',
|
166
|
+
enTitle: 'Shop Gifts for Him',
|
167
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsK0XrKTfE9U4aq4uj7augEx7sWAZ1698133204886.png',
|
168
|
+
link: 'https://www.tiffany.co.uk/gifts/shop/gifts-for-him/',
|
169
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
170
|
+
},
|
171
|
+
product: {
|
172
|
+
itemId: '23316714',
|
173
|
+
title: 'Diamonds by the Yard® Necklace',
|
174
|
+
tags: ['Elsa Peretti', 'Necklace', '18K Yellow Gold', 'Round Brilliant Cut Diamonds', 'Low Range'],
|
175
|
+
weight: null,
|
176
|
+
traceInfo: null,
|
177
|
+
homePage: [
|
178
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231027/fslQ25IUPSaFhSK9M1HEJ6alRIJMr1698417559326.png',
|
179
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231027/fsClFlMx7TBpoP4bRSw3XUexCuDCg1698417572473.png',
|
180
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231027/fsRrMKJDv9qgMNk5v5oVscJaWDIWT1698417567414.png',
|
181
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231027/fsEJ2Qx8ZqZWYBLoaXM9Q8PQW6qz51698417573007.png'
|
182
|
+
],
|
183
|
+
collection: 'Elsa Peretti®',
|
184
|
+
link: 'https://www.tiffany.co.uk/jewelry/necklaces-pendants/elsa-peretti-diamonds-by-the-yard-necklace-23316714/',
|
185
|
+
info: 'Tiffany round diamonds catch the light and make it dance. Necklace with three round brilliant diamonds in 18k gold. 16" long. Carat total weight .30. Original designs copyrighted by Elsa Peretti.',
|
186
|
+
price: 2850
|
187
|
+
},
|
188
|
+
isCollect: false
|
189
|
+
},
|
190
|
+
{
|
191
|
+
position: '5',
|
192
|
+
video: {
|
193
|
+
itemId: 'VIDEOETgPB1697896809578',
|
194
|
+
title: "Introduced in 1886, the Tiffany® Setting is the world's most iconic engagement ring.\nMasterfully engineered, the sleek six-prong setting virtually disappears, allowing the\ndiamond to take center stage for maximum sparkle. The best gifts are the ones that stand the test of time.",
|
195
|
+
tags: [
|
196
|
+
'high jewelry',
|
197
|
+
'Ring',
|
198
|
+
'mixed-cut diamonds',
|
199
|
+
'Engagement',
|
200
|
+
'love',
|
201
|
+
'High Range',
|
202
|
+
'Half Pavé Diamonds',
|
203
|
+
'Tiffany® Setting'
|
204
|
+
],
|
205
|
+
weight: null,
|
206
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOETgPB1697896809578:RANDOM:3',
|
207
|
+
cover: null,
|
208
|
+
url: null,
|
209
|
+
imgUrls: [
|
210
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsErD8IPzvBmje6jX7XZDHDiaG7QX1697896928570.jpg',
|
211
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsx3R3p1yU3w0qSgxiN9F0ALSQnoM1697896915952.jpg',
|
212
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsAaEqu6mtsUPcnihL9ccC7FcRa0h1697896926552.jpg',
|
213
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsuhYNquoHVPog5lXpWOXf5xf3P7s1697897000092.jpg',
|
214
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsd8d9HXCPZc8V6vEivfe4gDizcST1697897013333.jpg'
|
215
|
+
]
|
216
|
+
},
|
217
|
+
cta: null,
|
218
|
+
product: null,
|
219
|
+
isCollect: true
|
220
|
+
},
|
221
|
+
{
|
222
|
+
position: '6',
|
223
|
+
video: {
|
224
|
+
itemId: 'VIDEOhmMHZ1698222334061',
|
225
|
+
title: 'Trust us, when she asked for your heart, she had an @elsaperetti.official pendant in mind.',
|
226
|
+
tags: ['Elsa Peretti', 'heart', 'pendant', 'Sterlingsilver', 'Large', 'Gift-Giving', 'Low Range'],
|
227
|
+
weight: null,
|
228
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOhmMHZ1698222334061:RANDOM:3',
|
229
|
+
cover: null,
|
230
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fsCjCRlm3P5zYx6BjAjcOFOzbtz1m1698222225958.mp4',
|
231
|
+
imgUrls: null
|
232
|
+
},
|
233
|
+
cta: null,
|
234
|
+
product: null,
|
235
|
+
isCollect: false
|
236
|
+
},
|
237
|
+
{
|
238
|
+
position: '7',
|
239
|
+
video: {
|
240
|
+
itemId: 'VIDEOtBr5C1697894472026',
|
241
|
+
title: 'Tiffany Lock: an infinite expression of love; a feat of expert craftsmanship. Hand-set pavé diamonds in 18k gold exemplify the innovative design and creative beauty our House is known for.',
|
242
|
+
tags: [
|
243
|
+
'Holiday',
|
244
|
+
'Tiffany Lock',
|
245
|
+
'Bracelet',
|
246
|
+
'18K Rose Gold',
|
247
|
+
'Gift-Giving',
|
248
|
+
'Daily Wear',
|
249
|
+
'Round Brilliant Cut Diamonds',
|
250
|
+
'Medium',
|
251
|
+
'Bold',
|
252
|
+
'visually striking',
|
253
|
+
'padlock-inspired design',
|
254
|
+
'Mid Range'
|
255
|
+
],
|
256
|
+
weight: null,
|
257
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOtBr5C1697894472026:RANDOM:3',
|
258
|
+
cover: null,
|
259
|
+
url: null,
|
260
|
+
imgUrls: [
|
261
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fs7IzBWHCL2lgw0w6llVq1cM1G07T1697894435685.jpg'
|
262
|
+
]
|
263
|
+
},
|
264
|
+
cta: {
|
265
|
+
itemId: 'CTAvM02W1698133220107',
|
266
|
+
title: '送给他',
|
267
|
+
tags: ['Gift-Giving', 'Gift for Him'],
|
268
|
+
weight: null,
|
269
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAvM02W1698133220107:RANDOM:3',
|
270
|
+
enTitle: 'Shop Gifts for Him',
|
271
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsK0XrKTfE9U4aq4uj7augEx7sWAZ1698133204886.png',
|
272
|
+
link: 'https://www.tiffany.co.uk/gifts/shop/gifts-for-him/',
|
273
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
274
|
+
},
|
275
|
+
product: {
|
276
|
+
itemId: '70424762',
|
277
|
+
title: 'Bangle in Rose Gold with Full Pavé Diamonds',
|
278
|
+
tags: [
|
279
|
+
'Tiffany Lock',
|
280
|
+
'Bracelet',
|
281
|
+
'18K Rose Gold',
|
282
|
+
'Gift-Giving',
|
283
|
+
'Daily Wear',
|
284
|
+
'Round Brilliant Cut Diamonds',
|
285
|
+
'Medium',
|
286
|
+
'Bold',
|
287
|
+
'visually striking',
|
288
|
+
'padlock-inspired design'
|
289
|
+
],
|
290
|
+
weight: null,
|
291
|
+
traceInfo: null,
|
292
|
+
homePage: [
|
293
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231013/fsDheoaURnoAycPAG7iTXIJ5VRjQQ1697193363594.png'
|
294
|
+
],
|
295
|
+
collection: 'Tiffany Lock',
|
296
|
+
link: 'https://www.tiffany.co.uk/jewelry/bracelets/tiffany-lock-bangle-GRP12235/',
|
297
|
+
info: 'Inspired by the power of togetherness and inclusivity, Tiffany Lock is a bold and visual statement about the personal bonds that make us who we are. Designed to be worn by all genders, the Tiffany Lock bangle features an innovative clasp that echoes the functionality of a padlock, an important motif from The Tiffany Archives. This style is expertly crafted in 18k rose gold with hand-set diamonds for a striking contrast.',
|
298
|
+
price: 38000
|
299
|
+
},
|
300
|
+
isCollect: false
|
301
|
+
},
|
302
|
+
{
|
303
|
+
position: '8',
|
304
|
+
video: {
|
305
|
+
itemId: 'VIDEOI5vEc1697897884194',
|
306
|
+
title: 'Rings that fit your style to a T always look good—especially when round brilliant diamonds are involved.',
|
307
|
+
tags: [
|
308
|
+
'Ring',
|
309
|
+
'Tiffany T',
|
310
|
+
'Tiffany Hardware',
|
311
|
+
'18K Rose Gold',
|
312
|
+
'Round Brilliant Cut Diamonds',
|
313
|
+
'Gift-Giving',
|
314
|
+
'Engagement',
|
315
|
+
'Wedding',
|
316
|
+
'modern',
|
317
|
+
'Bold',
|
318
|
+
'medium',
|
319
|
+
'All genders',
|
320
|
+
'visually striking',
|
321
|
+
'Low Range'
|
322
|
+
],
|
323
|
+
weight: null,
|
324
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOI5vEc1697897884194:RANDOM:3',
|
325
|
+
cover: null,
|
326
|
+
url: null,
|
327
|
+
imgUrls: [
|
328
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fs6w9U9J1jQ6j7mptMfsiXT3WH4zE1697897847079.jpg'
|
329
|
+
]
|
330
|
+
},
|
331
|
+
cta: {
|
332
|
+
itemId: 'CTAv6PtM1695786177769',
|
333
|
+
title: '在网站上购买',
|
334
|
+
tags: ['product'],
|
335
|
+
weight: null,
|
336
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAv6PtM1695786177769:RANDOM:3',
|
337
|
+
enTitle: 'Shop Now',
|
338
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231013/fsloiKQKOgRCVojqJelsybqijZcVy1697183332522.png',
|
339
|
+
link: 'https://www.tiffany.co.uk',
|
340
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
341
|
+
},
|
342
|
+
product: {
|
343
|
+
itemId: '67795288',
|
344
|
+
title: 'T1 Ring in Rose Gold with Diamonds, 2.5 mm',
|
345
|
+
tags: [
|
346
|
+
'Ring',
|
347
|
+
'T1 Ring',
|
348
|
+
'Tiffany T',
|
349
|
+
'18K Rose Gold',
|
350
|
+
'Round Brilliant Diamonds',
|
351
|
+
'Gift-Giving',
|
352
|
+
'Formal Dinner/Party',
|
353
|
+
'All genders',
|
354
|
+
'elegant',
|
355
|
+
'modern',
|
356
|
+
'bold',
|
357
|
+
'Medium'
|
358
|
+
],
|
359
|
+
weight: null,
|
360
|
+
traceInfo: null,
|
361
|
+
homePage: [
|
362
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231016/fsJ63rABYduEqLdyjuWTVK5yQf6uZ1697447520070.png',
|
363
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsmpCUFzDaxlx5G9a5EulUaR9rW0N1697783157343.png',
|
364
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fss1r8C4HN70kT7ZrJR0kNqPSmDTP1697783157280.png',
|
365
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fs0yGklGFeUHNKSe1rDJ68Ow4MU8t1697783160901.png',
|
366
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fs20uawVN73asmoKJn6OwhKPou9nv1697783165761.png',
|
367
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsZOUIC3eHPVIGorzoD0FGefuKILU1697796014329.png'
|
368
|
+
],
|
369
|
+
collection: 'TIffany T',
|
370
|
+
link: 'https://www.tiffany.co.uk/jewelry/rings/tiffany-t-t1-narrow-diamond-ring-GRP11292/',
|
371
|
+
info: 'Pavé diamonds illuminate one side of this ring, adding a striking radiance to the design. A reinvention of a Tiffany icon, Tiffany T1 designs represent individual strength and perpetual power, worn outwardly to express what lies within. Style this ring with other Tiffany designs in 18k rose gold or mix your metals for a bold look.',
|
372
|
+
price: 2200
|
373
|
+
},
|
374
|
+
isCollect: false
|
375
|
+
},
|
376
|
+
{
|
377
|
+
position: '9',
|
378
|
+
video: {
|
379
|
+
itemId: 'VIDEOI5vEc1697897884194',
|
380
|
+
title: 'Rings that fit your style to a T always look good—especially when round brilliant diamonds are involved.',
|
381
|
+
tags: [
|
382
|
+
'Ring',
|
383
|
+
'Tiffany T',
|
384
|
+
'Tiffany Hardware',
|
385
|
+
'18K Rose Gold',
|
386
|
+
'Round Brilliant Cut Diamonds',
|
387
|
+
'Gift-Giving',
|
388
|
+
'Engagement',
|
389
|
+
'Wedding',
|
390
|
+
'modern',
|
391
|
+
'Bold',
|
392
|
+
'medium',
|
393
|
+
'All genders',
|
394
|
+
'visually striking',
|
395
|
+
'Low Range'
|
396
|
+
],
|
397
|
+
weight: null,
|
398
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOI5vEc1697897884194:RANDOM:3',
|
399
|
+
cover: null,
|
400
|
+
url: null,
|
401
|
+
imgUrls: [
|
402
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fs6w9U9J1jQ6j7mptMfsiXT3WH4zE1697897847079.jpg'
|
403
|
+
]
|
404
|
+
},
|
405
|
+
cta: null,
|
406
|
+
product: null,
|
407
|
+
isCollect: false
|
408
|
+
},
|
409
|
+
{
|
410
|
+
position: '10',
|
411
|
+
video: {
|
412
|
+
itemId: 'VIDEOCsdHf1698213188708',
|
413
|
+
title: 'Inspired by chain link designs from our House archives, the new Tiffany Forge collection is defined by a signature open-link motif—a symbol of the unique path that we forge in life and the encounters that set our life in motion.',
|
414
|
+
tags: ['Tiffany Forge', 'chain', 'Silver', 'Large', 'Low Range', 'Necklace', 'Bold'],
|
415
|
+
weight: null,
|
416
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOCsdHf1698213188708:RANDOM:3',
|
417
|
+
cover: null,
|
418
|
+
url: null,
|
419
|
+
imgUrls: [
|
420
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fs9vDpOOuxK87P8atdAoATxunmp5m1698213040883.jpg',
|
421
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fsfnr09i6X5glNVTeXnAezTJH8R6c1698213047248.jpg',
|
422
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fszT6MJPqKORSvDcsRVa3UAcdkdkD1698213051350.jpg',
|
423
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fs08k0DMDHD1n4BScWp5bMI8gHFxq1698213059457.jpg'
|
424
|
+
]
|
425
|
+
},
|
426
|
+
cta: {
|
427
|
+
itemId: 'CTAvM02W1698133220107',
|
428
|
+
title: '送给他',
|
429
|
+
tags: ['Gift-Giving', 'Gift for Him'],
|
430
|
+
weight: null,
|
431
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAvM02W1698133220107:RANDOM:3',
|
432
|
+
enTitle: 'Shop Gifts for Him',
|
433
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsK0XrKTfE9U4aq4uj7augEx7sWAZ1698133204886.png',
|
434
|
+
link: 'https://www.tiffany.co.uk/gifts/shop/gifts-for-him/',
|
435
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
436
|
+
},
|
437
|
+
product: {
|
438
|
+
itemId: '72547934',
|
439
|
+
title: 'Large Link Necklace in High-polished Sterling Silver',
|
440
|
+
tags: [
|
441
|
+
'Tiffany Forge',
|
442
|
+
'Silver',
|
443
|
+
'high-polished',
|
444
|
+
'Necklace',
|
445
|
+
'Large',
|
446
|
+
'Low Range',
|
447
|
+
'Since 1837',
|
448
|
+
'superior craftsmanship',
|
449
|
+
'Bold',
|
450
|
+
'pendants',
|
451
|
+
'blue box'
|
452
|
+
],
|
453
|
+
weight: null,
|
454
|
+
traceInfo: null,
|
455
|
+
homePage: [
|
456
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fsV3yBDkCqMuUa1Cxb0EJP1FpkeV41698212161886.png',
|
457
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fsJmzoTvI8OMHW9gcwTDehedBaVAa1698212165524.png',
|
458
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fs7vbCdwJ5SiPeCsvu2fXZwGPTcXR1698212167570.png',
|
459
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fsP523UoWlglRZCubvHE7jVG4Zvnv1698212337186.png',
|
460
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fszWR184toh5tFkUeQAiwLNmCHsk01698212340693.png',
|
461
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fsEnXRU3tLamfbPib2vpUIwAsLrvT1698212329317.png'
|
462
|
+
],
|
463
|
+
collection: 'Tiffany Forge',
|
464
|
+
link: 'https://www.tiffany.co.uk/jewelry/necklaces-pendants/tiffany-forge-large-link-necklace-GRP12400/',
|
465
|
+
info: "Since 1837, maker and material have come together at Tiffany & Co. to form exceptional creations—shaping metal into icons. Tiffany Forge celebrates our legacy of superior craftsmanship and the maker in all of us. Crafted in sterling silver, we've reimagined a chain from The Tiffany Archives to create this collection's signature open link motif. Wear this necklace by itself or layer with Tiffany necklaces of various lengths for a bold look.",
|
466
|
+
price: 3350
|
467
|
+
},
|
468
|
+
isCollect: false
|
469
|
+
},
|
470
|
+
{
|
471
|
+
position: '11',
|
472
|
+
video: {
|
473
|
+
itemId: 'VIDEO8O5a81697897215368',
|
474
|
+
title: 'At Tiffany, we cut our diamonds to always prioritize beauty over carat weight. Every Tiffany diamond combines artistic passion and technical precision—nothing less than your love story deserves.',
|
475
|
+
tags: ['Ring', 'mixed-cut diamonds', 'Harmony', 'love', 'Engagement', 'high jewelry'],
|
476
|
+
weight: null,
|
477
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEO8O5a81697897215368:RANDOM:3',
|
478
|
+
cover: null,
|
479
|
+
url: null,
|
480
|
+
imgUrls: [
|
481
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsDuWZBgu2mxHcKXJL8rWXrCJpWwP1697897205061.jpg',
|
482
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsQz6q8WkGobHACj2VaP5Qe8oh1181697897203723.jpg'
|
483
|
+
]
|
484
|
+
},
|
485
|
+
cta: null,
|
486
|
+
product: null,
|
487
|
+
isCollect: false
|
488
|
+
},
|
489
|
+
{
|
490
|
+
position: '12',
|
491
|
+
video: {
|
492
|
+
itemId: 'VIDEODuKPC1697893725500',
|
493
|
+
title: 'A little sparkle goes a long way but the Tiffany T collection goes the distance. A study in pure, graphic construction, the designs are marked by a sleek T motif—a signature House code—inspired by our name. ',
|
494
|
+
tags: [
|
495
|
+
'Holiday',
|
496
|
+
'Bracelet',
|
497
|
+
'Tiffany T',
|
498
|
+
'18K Rose Gold',
|
499
|
+
'Round Brilliant Cut Diamonds',
|
500
|
+
'paired',
|
501
|
+
'modern',
|
502
|
+
'Large',
|
503
|
+
'Low Range',
|
504
|
+
'Daily Wear',
|
505
|
+
'Gift-Giving',
|
506
|
+
'image'
|
507
|
+
],
|
508
|
+
weight: null,
|
509
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEODuKPC1697893725500:RANDOM:3',
|
510
|
+
cover: null,
|
511
|
+
url: null,
|
512
|
+
imgUrls: [
|
513
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsM70fE5Es0RUL92s38ugr7LNAL7u1697893688295.jpg'
|
514
|
+
]
|
515
|
+
},
|
516
|
+
cta: null,
|
517
|
+
product: null,
|
518
|
+
isCollect: false
|
519
|
+
},
|
520
|
+
{
|
521
|
+
position: '13',
|
522
|
+
video: {
|
523
|
+
itemId: 'VIDEO80fKA1697896188841',
|
524
|
+
title: 'House ambassador Nancy Ajram makes Tiffany Lock her own. Featuring sleek silhouettes and our legendary diamonds, the new designs in the collection are icons of love and celebrate our most unbreakable bonds.',
|
525
|
+
tags: [
|
526
|
+
'Nancy',
|
527
|
+
'Tiffany Lock',
|
528
|
+
'Earrings',
|
529
|
+
'18K Rose Gold',
|
530
|
+
'Low Range',
|
531
|
+
'Round Brilliant Cut Diamonds',
|
532
|
+
'Gift-Giving',
|
533
|
+
'Daily Wear',
|
534
|
+
'hand-set',
|
535
|
+
'padlock-inspired design',
|
536
|
+
'All genders',
|
537
|
+
'celebrity'
|
538
|
+
],
|
539
|
+
weight: null,
|
540
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEO80fKA1697896188841:RANDOM:3',
|
541
|
+
cover: null,
|
542
|
+
url: null,
|
543
|
+
imgUrls: [
|
544
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsszdpbwNZvC5cmD9XN6ZDuVSgtsZ1697896060052.jpg',
|
545
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231021/fsjqwfePVwqczvJQcA4UacgbDA0aP1697896060523.jpg',
|
546
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsr0A0xmenftd7P6WqiE5xjd89pHF1698131667956.jpg',
|
547
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsqdWPmb7l1Cix8AHurlmnlPGQWU51698131669237.jpg',
|
548
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsuaaYHPG9cXbtMDz8v9ojSbHL3AY1698131685112.jpg',
|
549
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsSKONVKMeu7qykE37PWXbepthYPy1698131788402.jpg'
|
550
|
+
]
|
551
|
+
},
|
552
|
+
cta: {
|
553
|
+
itemId: 'CTAvM02W1698133220107',
|
554
|
+
title: '送给他',
|
555
|
+
tags: ['Gift-Giving', 'Gift for Him'],
|
556
|
+
weight: null,
|
557
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAvM02W1698133220107:RANDOM:3',
|
558
|
+
enTitle: 'Shop Gifts for Him',
|
559
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsK0XrKTfE9U4aq4uj7augEx7sWAZ1698133204886.png',
|
560
|
+
link: 'https://www.tiffany.co.uk/gifts/shop/gifts-for-him/',
|
561
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
562
|
+
},
|
563
|
+
product: {
|
564
|
+
itemId: '72344251',
|
565
|
+
title: 'Tiffany Lock Ring in Yellow Gold with Diamonds',
|
566
|
+
tags: [
|
567
|
+
'Tiffany Lock',
|
568
|
+
'Ring',
|
569
|
+
'18K Yellow Gold',
|
570
|
+
'Medium',
|
571
|
+
'Daily Wear',
|
572
|
+
'Gift-Giving',
|
573
|
+
'Round Brilliant Cut Diamonds',
|
574
|
+
'All genders',
|
575
|
+
'Bold',
|
576
|
+
'visually striking',
|
577
|
+
'padlock-inspired design'
|
578
|
+
],
|
579
|
+
weight: null,
|
580
|
+
traceInfo: null,
|
581
|
+
homePage: [
|
582
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231013/fsMa8iixPYzOQEFINBbT3QfMRiWjz1697193727404.png',
|
583
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsmBnsjZx9dEYKffb24Z1cBr8oMEo1697783812995.png',
|
584
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsWubi2MpD8Kn2hLkkisjSeFrPqYi1697783811644.png',
|
585
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsAE2k9dwchXgBEUoI4qd5Z1MWcVu1697783814388.png',
|
586
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsxMJE7L12XekwrBedCyAqoaC5lEP1697796619860.png',
|
587
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsSbKkKH4oVzgtgkZJBQs5rJmb5Cd1697796630126.png'
|
588
|
+
],
|
589
|
+
collection: 'Tiffany Lock',
|
590
|
+
link: 'https://www.tiffany.co.uk/jewelry/rings/tiffany-lock-ring-GRP12349/',
|
591
|
+
info: 'Inspired by the power of togetherness and inclusivity, Tiffany Lock is a bold and visual statement about the personal bonds that make us who we are. Designed to be worn by all genders, Tiffany Lock designs are inspired by the functionality of a padlock, an important motif from The Tiffany Archives. This ring is expertly crafted in 18k yellow gold with hand-set diamonds. Wear this striking ring on its own or with your everyday ring stack.',
|
592
|
+
price: 3400
|
593
|
+
},
|
594
|
+
isCollect: false
|
595
|
+
},
|
596
|
+
{
|
597
|
+
position: '14',
|
598
|
+
video: {
|
599
|
+
itemId: 'VIDEO26lyf1698213635683',
|
600
|
+
title: 'Introduced in 1883. Reimagined for 2023. The padlock motif first appeared in The Tiffany Archives as a brooch. Engraved with the Latin phrase “Fide et More,” which translates to “With Faith and Love,” the piece was gifted by an adoring husband to his wife. 140 years later, Tiffany Lock celebrates the origin of the House’s padlock motif and its representation of lasting connection.',
|
601
|
+
tags: [
|
602
|
+
'Tiffany Lock',
|
603
|
+
'love',
|
604
|
+
'Infinite connections',
|
605
|
+
'Bangle',
|
606
|
+
'padlock-inspired design',
|
607
|
+
'Round Brilliant Cut Diamonds',
|
608
|
+
'18K Rose Gold',
|
609
|
+
'blue box'
|
610
|
+
],
|
611
|
+
weight: null,
|
612
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEO26lyf1698213635683:RANDOM:3',
|
613
|
+
cover: null,
|
614
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fsXKR2oadKGmSkNf873hQbPqQu8U51698213501153.mp4',
|
615
|
+
imgUrls: null
|
616
|
+
},
|
617
|
+
cta: {
|
618
|
+
itemId: 'CTAv6PtM1695786177769',
|
619
|
+
title: '在网站上购买',
|
620
|
+
tags: ['product'],
|
621
|
+
weight: null,
|
622
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAv6PtM1695786177769:RANDOM:3',
|
623
|
+
enTitle: 'Shop Now',
|
624
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231013/fsloiKQKOgRCVojqJelsybqijZcVy1697183332522.png',
|
625
|
+
link: 'https://www.tiffany.co.uk',
|
626
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
627
|
+
},
|
628
|
+
product: {
|
629
|
+
itemId: '70424762',
|
630
|
+
title: 'Bangle in Rose Gold with Full Pavé Diamonds',
|
631
|
+
tags: [
|
632
|
+
'Tiffany Lock',
|
633
|
+
'Bracelet',
|
634
|
+
'18K Rose Gold',
|
635
|
+
'Gift-Giving',
|
636
|
+
'Daily Wear',
|
637
|
+
'Round Brilliant Cut Diamonds',
|
638
|
+
'Medium',
|
639
|
+
'Bold',
|
640
|
+
'visually striking',
|
641
|
+
'padlock-inspired design'
|
642
|
+
],
|
643
|
+
weight: null,
|
644
|
+
traceInfo: null,
|
645
|
+
homePage: [
|
646
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231013/fsDheoaURnoAycPAG7iTXIJ5VRjQQ1697193363594.png'
|
647
|
+
],
|
648
|
+
collection: 'Tiffany Lock',
|
649
|
+
link: 'https://www.tiffany.co.uk/jewelry/bracelets/tiffany-lock-bangle-GRP12235/',
|
650
|
+
info: 'Inspired by the power of togetherness and inclusivity, Tiffany Lock is a bold and visual statement about the personal bonds that make us who we are. Designed to be worn by all genders, the Tiffany Lock bangle features an innovative clasp that echoes the functionality of a padlock, an important motif from The Tiffany Archives. This style is expertly crafted in 18k rose gold with hand-set diamonds for a striking contrast.',
|
651
|
+
price: 38000
|
652
|
+
},
|
653
|
+
isCollect: false
|
654
|
+
},
|
655
|
+
{
|
656
|
+
position: '15',
|
657
|
+
video: {
|
658
|
+
itemId: 'VIDEOF0tC31698026883225',
|
659
|
+
title: 'Every Tiffany diamond is a scintillating symbol of our renowned craftsmanship, exacting standards and history of excellence.',
|
660
|
+
tags: ['Ring', 'mixed-cut diamonds', 'high jewelry', 'High Range'],
|
661
|
+
weight: null,
|
662
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOF0tC31698026883225:RANDOM:3',
|
663
|
+
cover: null,
|
664
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231023/fs9g1GziEkhnBQ1mJzqvrK6AAe4Ls1698026873438.mp4',
|
665
|
+
imgUrls: null
|
666
|
+
},
|
667
|
+
cta: null,
|
668
|
+
product: null,
|
669
|
+
isCollect: false
|
670
|
+
},
|
671
|
+
{
|
672
|
+
position: '16',
|
673
|
+
video: {
|
674
|
+
itemId: 'VIDEO8b3BC1698221950270',
|
675
|
+
title: 'Triple play. This iconic Tiffany T1 bangle is available in 18k yellow, rose and white gold—with or without diamonds.',
|
676
|
+
tags: [
|
677
|
+
'Tiffany T',
|
678
|
+
'Bangle',
|
679
|
+
'Round Brilliant Cut Diamonds',
|
680
|
+
'18k yellow and white gold ',
|
681
|
+
'18K Rose Gold',
|
682
|
+
'Low Range',
|
683
|
+
'Bracelet'
|
684
|
+
],
|
685
|
+
weight: null,
|
686
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEO8b3BC1698221950270:RANDOM:3',
|
687
|
+
cover: null,
|
688
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231025/fseGrOC9inpxs4j6RYQ7jN6Q9QV5c1698221875649.mp4',
|
689
|
+
imgUrls: null
|
690
|
+
},
|
691
|
+
cta: {
|
692
|
+
itemId: 'CTAvM02W1698133220107',
|
693
|
+
title: '送给他',
|
694
|
+
tags: ['Gift-Giving', 'Gift for Him'],
|
695
|
+
weight: null,
|
696
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAvM02W1698133220107:RANDOM:3',
|
697
|
+
enTitle: 'Shop Gifts for Him',
|
698
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsK0XrKTfE9U4aq4uj7augEx7sWAZ1698133204886.png',
|
699
|
+
link: 'https://www.tiffany.co.uk/gifts/shop/gifts-for-him/',
|
700
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
701
|
+
},
|
702
|
+
product: {
|
703
|
+
itemId: '70399628',
|
704
|
+
title: 'T1 Hinged Bangle in Rose Gold with Diamonds, Narrow',
|
705
|
+
tags: [
|
706
|
+
'Bracelet',
|
707
|
+
'T1 Hinged Bangle',
|
708
|
+
'Tiffany T',
|
709
|
+
'18K Rose Gold',
|
710
|
+
'Narrow size',
|
711
|
+
'Round Brilliant Diamonds',
|
712
|
+
'Gift-Giving',
|
713
|
+
'Medium',
|
714
|
+
'Formal Dinner/Party',
|
715
|
+
'All genders',
|
716
|
+
'elegant',
|
717
|
+
'modern'
|
718
|
+
],
|
719
|
+
weight: null,
|
720
|
+
traceInfo: null,
|
721
|
+
homePage: [
|
722
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231016/fsBVWywjjhVYKQ0Qe3un78rUf2iez1697447448037.png',
|
723
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fslBWyDOqbEwZqfBEYMnIibCzjK6r1697783704632.png',
|
724
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fstj2hE0SMolhdOUv0qbzB8h3D9lT1697783708128.png',
|
725
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsd0wqlyhPdOXphIROfW6NRp2dze91697783712184.png',
|
726
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fs6FuNvuT3lKbQ23vSgEjttFpGeJ01697783712856.png',
|
727
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fst3g260N67A1IIlGjZJC5xsHqhQV1697783717483.png',
|
728
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsQ0wD3BTaJUbvzQLS7NkaQrhzCgr1697783719692.png',
|
729
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsSZZWDaGyvCfZbC91MnQVlaD8iHP1697796529182.png'
|
730
|
+
],
|
731
|
+
collection: 'TIffany T',
|
732
|
+
link: 'https://www.tiffany.co.uk/jewelry/bracelets/tiffany-t-t1-narrow-diamond-hinged-bangle-GRP11300/',
|
733
|
+
info: 'Wrapped around the wearer in a continuous, unbroken circle, this hinged bangle features scintillating diamonds and a strong T motif at the centre. A reinvention of a Tiffany icon, Tiffany T1 designs represent individual strength and perpetual power, worn outwardly to express what lies within. Stack this hinged bangle with other Tiffany T bracelets for a bold look, or simply wear it on its own.',
|
734
|
+
price: 12800
|
735
|
+
},
|
736
|
+
isCollect: false
|
737
|
+
},
|
738
|
+
{
|
739
|
+
position: '17',
|
740
|
+
video: {
|
741
|
+
itemId: 'VIDEO0veNz1695797822522',
|
742
|
+
title: 'You already found your perfect match, now let us help you find your perfect pair. Tiffany band rings are specifically crafted to mix and match with a multitude of engagement ring styles, ensuring your ring stack is as unique as your love story.',
|
743
|
+
tags: [
|
744
|
+
'ring',
|
745
|
+
'Sixteen Stone Ring',
|
746
|
+
'Ring',
|
747
|
+
'love',
|
748
|
+
'Engagement',
|
749
|
+
'Jean Schlumberger',
|
750
|
+
'18K Yellow Gold',
|
751
|
+
'Round Brilliant Cut Diamonds',
|
752
|
+
'Daily Wear',
|
753
|
+
'Wedding',
|
754
|
+
'Tiffany & Co.'
|
755
|
+
],
|
756
|
+
weight: null,
|
757
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEO0veNz1695797822522:RANDOM:3',
|
758
|
+
cover: null,
|
759
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20230927/fsZjwvHxk8IDKQJBMPph7SdrQFnw31695797814964.mp4',
|
760
|
+
imgUrls: null
|
761
|
+
},
|
762
|
+
cta: {
|
763
|
+
itemId: 'CTAv6PtM1695786177769',
|
764
|
+
title: '在网站上购买',
|
765
|
+
tags: ['product'],
|
766
|
+
weight: null,
|
767
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAv6PtM1695786177769:RANDOM:3',
|
768
|
+
enTitle: 'Shop Now',
|
769
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231013/fsloiKQKOgRCVojqJelsybqijZcVy1697183332522.png',
|
770
|
+
link: 'https://www.tiffany.co.uk',
|
771
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
772
|
+
},
|
773
|
+
product: {
|
774
|
+
itemId: '15263318',
|
775
|
+
title: 'Band Ring in Platinum with a Full Circle of Diamonds, 3.7 mm',
|
776
|
+
tags: [
|
777
|
+
'Ring',
|
778
|
+
'Platinum',
|
779
|
+
'Tiffany Forever',
|
780
|
+
'Round Brilliant Diamonds',
|
781
|
+
'paired',
|
782
|
+
'timeless',
|
783
|
+
'elegant',
|
784
|
+
'lifelong love',
|
785
|
+
'commitment',
|
786
|
+
'Daily Wear',
|
787
|
+
'Gift-Giving',
|
788
|
+
'Wedding/EngagementMidRange'
|
789
|
+
],
|
790
|
+
weight: null,
|
791
|
+
traceInfo: null,
|
792
|
+
homePage: [
|
793
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231016/fsJqBmSr5n95b5P4fyOkZWM5SkS8X1697445420093.png',
|
794
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fs9DlWxCZBHktp4thcaN8iRqhP7Ar1697782150459.png',
|
795
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fseHUbKL4dEnoysskZJlvMlFWcjSt1697793091865.png',
|
796
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsF60hdqpaxI0neJzOn0jOn5f4KYv1697793093374.png',
|
797
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsFbPFfmM048TbPmRRqcRORVPrrXs1697793094862.png'
|
798
|
+
],
|
799
|
+
collection: 'Tiffany Forever',
|
800
|
+
link: 'https://www.tiffany.co.uk/jewelry/rings/tiffany-forever-band-ring-GRP00318/',
|
801
|
+
info: 'Each Tiffany Forever ring celebrates the eternal bond of lifelong love and commitment. This platinum band is expertly set with a full circle of striking round brilliant diamonds. Pair it with other platinum designs for a timeless look.',
|
802
|
+
price: 20000
|
803
|
+
},
|
804
|
+
isCollect: false
|
805
|
+
},
|
806
|
+
{
|
807
|
+
position: '18',
|
808
|
+
video: {
|
809
|
+
itemId: 'VIDEOIe3Ik1698042685440',
|
810
|
+
title: 'Many of Jean Schlumberger’s greatest creations were heavily inspired by his early beginnings working\nwith textiles. Worn by House ambassador Anya Taylor-Joy, his Ninety-two Stone necklace and Sixteen\nStone ring evoke delicate stitches of fabric.',
|
811
|
+
tags: [
|
812
|
+
'AnyaTaylor-Joy',
|
813
|
+
'Jean Schlumberger',
|
814
|
+
'Ring',
|
815
|
+
'Necklace',
|
816
|
+
'18K Yellow and White Gold',
|
817
|
+
'Platinum',
|
818
|
+
'Round Brilliant Cut Diamonds',
|
819
|
+
'Mid Range',
|
820
|
+
'Daily Wear',
|
821
|
+
'Formal Dinner/Party',
|
822
|
+
'Gift-Giving',
|
823
|
+
'Wedding',
|
824
|
+
'Engagement',
|
825
|
+
'Earing',
|
826
|
+
'Sixteen Stone Ring'
|
827
|
+
],
|
828
|
+
weight: null,
|
829
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOIe3Ik1698042685440:RANDOM:3',
|
830
|
+
cover: null,
|
831
|
+
url: 'https://tiffany-sxp-cdn.chatlabs.net/prod/sound/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231023/fsZbIT4t7NO0QPItOJDKSz2bBavGa1698041984668.mp4',
|
832
|
+
imgUrls: null
|
833
|
+
},
|
834
|
+
cta: {
|
835
|
+
itemId: 'CTAvM02W1698133220107',
|
836
|
+
title: '送给他',
|
837
|
+
tags: ['Gift-Giving', 'Gift for Him'],
|
838
|
+
weight: null,
|
839
|
+
traceInfo: 'VECTORdUnAp1696905029427:CTA:CTAvM02W1698133220107:RANDOM:3',
|
840
|
+
enTitle: 'Shop Gifts for Him',
|
841
|
+
icon: 'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231024/fsK0XrKTfE9U4aq4uj7augEx7sWAZ1698133204886.png',
|
842
|
+
link: 'https://www.tiffany.co.uk/gifts/shop/gifts-for-him/',
|
843
|
+
menuCategoryId: '650c1167f8bf295eedc4b322'
|
844
|
+
},
|
845
|
+
product: {
|
846
|
+
itemId: '11715966',
|
847
|
+
title: 'Sixteen Stone Ring',
|
848
|
+
tags: [
|
849
|
+
'Ring',
|
850
|
+
'Tiffany&Co.Schlumberger',
|
851
|
+
'Jean Schlumberger',
|
852
|
+
'18K Goldand Platinum',
|
853
|
+
'Round Brilliant Diamonds',
|
854
|
+
'Sixteen Stone Ring',
|
855
|
+
'Daily Wear',
|
856
|
+
'Gift-Giving',
|
857
|
+
'Wedding/Engagement'
|
858
|
+
],
|
859
|
+
weight: null,
|
860
|
+
traceInfo: null,
|
861
|
+
homePage: [
|
862
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231016/fssEvHTRpkgT92QDrVx3DfvsKoBHF1697445483462.png',
|
863
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fszQqkhDArpnlaTAkKf2HPBb78yr61697782010510.png',
|
864
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsojSbYMlZFcxHoiaRrmU3tSVUmUh1697782013462.png',
|
865
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsaE26ozHIWUM3mMchIr9js7hrxdh1697792981967.png',
|
866
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231020/fsCLVY084RgIPwOH6zOLukaRsJ2BH1697792987194.png'
|
867
|
+
],
|
868
|
+
collection: 'Tiffany & Co. Schlumberger®',
|
869
|
+
link: 'https://www.tiffany.co.uk/jewelry/rings/tiffany-co-schlumberger-sixteen-stone-ring-GRP00053/',
|
870
|
+
info: "Jean Schlumberger’s visionary creations are among the world’s most intricate designs. Brilliant diamonds alternate with golden X's to create this dazzling design.",
|
871
|
+
price: 12500
|
872
|
+
},
|
873
|
+
isCollect: false
|
874
|
+
},
|
875
|
+
{
|
876
|
+
position: '19',
|
877
|
+
video: {
|
878
|
+
itemId: 'VIDEOLDVqS1698395618208',
|
879
|
+
title: 'The pinnacle of excellence, Tiffany & Co. diamond designs combine time-honored craftsmanship, elegant silhouettes and our breathtakingly beautiful diamonds—the perfect complement to the most special days. This is the season of stories yet to be written. Start yours at Tiffany & Co.',
|
880
|
+
tags: [
|
881
|
+
'Holiday',
|
882
|
+
'love',
|
883
|
+
'engagement',
|
884
|
+
'Ring',
|
885
|
+
'mixed-cut diamonds',
|
886
|
+
'high jewelry',
|
887
|
+
'superior craftsmanship',
|
888
|
+
'High Range'
|
889
|
+
],
|
890
|
+
weight: null,
|
891
|
+
traceInfo: 'VECTORdUnAp1696905029427:VIDEO:VIDEOLDVqS1698395618208:RANDOM:3',
|
892
|
+
cover: null,
|
893
|
+
url: null,
|
894
|
+
imgUrls: [
|
895
|
+
'https://tiffany-sxp-cdn.chatlabs.net/prod/img/2ead799b-ef60-4edf-85da-dfd187b22639/sxp-portal/20231027/fsLfJbLoNcurZLCWxk1yRsNKcf6Ac1698395575598.jpg'
|
896
|
+
]
|
897
|
+
},
|
898
|
+
cta: null,
|
899
|
+
product: null,
|
900
|
+
isCollect: false
|
901
|
+
}
|
902
|
+
];
|