The Enchanted Double - Dragon Heart - Guarding Goblet: Embark on a Mysterious and Romantic Journey

$49.99
Style:  Tall Glasses
Quantity

Description

Item Details:
Tall mug:
Material: resin + stainless steel
Product size: 7.5*7.5*19cm
Product weight: 430g

Beer mug:
Material: resin + stainless steel
Product Size: 14*10*8.5cm
Product weight: 470g


Unique Design, Exuding Fantasy Charm

The Double - Dragon Heart - Guarding Goblet stands out with its stunning design. Two lifelike dragons encircle the cup body, their heads facing each other, artfully guarding a blazing red heart, as if safeguarding an ancient and mysterious love legend. The delicate and exquisite patterns on the cup body are like mysterious runes, exuding a strong fantasy atmosphere, instantly transporting you to a world full of magic and legends. Whether used as a daily wine glass or the focal decoration for a fantasy - themed party, it can add a unique touch to the scene.

High - quality Materials, Ensuring Quality and Safety

This goblet is meticulously crafted from food - grade resin and stainless - steel materials. The food - grade resin is lightweight, shatter - resistant, and highly corrosion - resistant, ensuring the long - term use of the cup. The stainless - steel inner lining is sturdy and durable, capable of withstanding high and low - temperature liquids. Whether it's warm milk, icy beer, or colorful cocktails, it can handle them all with ease, providing you with a safe and healthy using experience.

Exquisite Craftsmanship, True Quality in the Details

Each goblet is carved with superb craftsmanship. From the scales and eyes of the dragons to the texture and color of the red heart, every detail is meticulously processed, demonstrating a high level of production. The retro - style design is full of noble and elegant charm. Whether placed in the wine cabinet at home or on the dining - room table, it can showcase your unique taste and style.

Diverse Scenarios, Adding a Noble Atmosphere

The goblet is suitable for a variety of scenarios. In a warm family dinner, it can add a touch of romance and coziness to your dining time; at a fantasy - themed party, it becomes the center of attention; during festival celebrations, it is a carrier for conveying blessings and joy. Whether you are gathering with friends and relatives or enjoying a quiet wine - tasting moment alone, it can create a noble and elegant atmosphere for you.
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "f00411df-9ea9-47fd-bcbb-2f890b2ec3bb"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '724db742-94a0-4a3a-ba95-97c87d4dcbef' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "724db742-94a0-4a3a-ba95-97c87d4dcbef", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);