2004年Romanee-Conti 羅曼尼·康帝特級園

HK$134,448.75
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '07f5c0a1-8d16-43e9-98ef-66643d480a2d'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = '395c7771-354f-43fb-b63e-a9453aa1fdd7'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == '395c7771-354f-43fb-b63e-a9453aa1fdd7' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = '395c7771-354f-43fb-b63e-a9453aa1fdd7'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("添加成功"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("添加成功"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
24小時在線咨詢
買滿$10,000我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

感謝您對【友誠酒藏】的關注。我們是一家專業的頂級名酒供應商,致力於為港澳及台灣地區的收藏家與品鑑家提供珍稀、優質且來源可靠的佳釀。

我們榮譽呈獻一系列頂級酒款,包括傳奇的羅曼尼·康帝(Domaine de la Romanée-Conti)以及波爾多五大酒莊的世紀珍釀。

精選酒款推介:

2004年 Romanée-Conti 羅曼尼·康帝特級園

  • 年份: 2004

  • 等級: 羅曼尼·康帝特級園 (Grand Cru)

  • 產區: 法國,勃艮第 (Burgundy)

  • 售價: 歡迎透過WhatsApp查詢,價格將根據庫存與市場行情提供。


🍷 2004年 Romanée-Conti (DRC) 深度鑑賞與收藏指南

羅曼尼·康帝(Domaine de la Romanée-Conti, 簡稱 DRC) 被譽為勃艮第的皇冠明珠,而其獨佔特級園(Monopole)所出產的同名酒款,更是世界級藏家夢寐以求的聖杯。2004年份雖然在勃艮第是一個充滿挑戰的年份,但正是在這樣的氣候下,DRC 展現了其不可撼動的釀造實力與嚴苛的篩選標準,造就了這款優雅、通透且具備驚人陳年潛力的佳釀。

📊 產品詳細規格 (Product Specifications)

規格項目 詳細資料
酒莊 (Producer) Domaine de la Romanée-Conti (DRC)
產區 (Region) 法國勃艮第 (Burgundy), 沃恩-羅曼尼 (Vosne-Romanée)
等級 (Classification) 特級園 (Grand Cru) - 獨佔園 (Monopole)
葡萄品種 (Grape) 100% 黑皮諾 (Pinot Noir)
種植面積 僅約 1.8 公頃
平均樹齡 50年以上老藤
土壤結構 侏羅紀石灰岩、富含氧化鐵的黏土 (Limestone & Marl)
釀造工藝 全整串發酵 (Whole Cluster), 100% 新橡木桶陳釀
年產量 極度稀缺 (約 4,000 - 5,000 瓶/年)
適飲期 2015 - 2045+ (具備極佳陳年潛力)
知名評分 Burghound (Allen Meadows): 94分 / Robert Parker: 93-95分

🧐 2004年份深度解析:被低估的優雅經典

氣候與風土 (Terroir & Vintage): 2004年對於勃艮第種植者來說是考驗技術的一年。夏季涼爽,8月遭遇冰雹,但9月迎來了乾燥與陽光。DRC 憑藉其極致的葡萄園管理(Biodynamic 生物動力法)與收成時極為嚴格的三次篩選,剔除了所有未成熟或受損的葡萄。這使得 2004年的 Romanée-Conti 呈現出比炎熱年份更加純淨、通透且具備古典主義風格的特質。

品鑑筆記 (Tasting Notes):

  • 色澤: 呈現深邃但透亮的紅寶石色,邊緣帶有石榴紅的光澤。

  • 香氣: 開瓶後散發出標誌性的凋謝玫瑰花瓣香氣,混合著野生紅漿果、東方香料、檀香木以及陳年後發展出的森林地表 (Sous-bois) 與松露氣息。2004年份特有的草本清香為其增添了清爽的結構感。

  • 口感: 入口如絲綢般順滑,單寧精緻而緊密。酸度活躍,賦予酒體極強的生命力。餘韻悠長,帶有礦物質的鹹鮮感,展現了特級園風土的極致表達。


🍽️ 侍酒建議與食物搭配 (Serving & Pairing)

為了讓這款稀世珍釀展現最佳狀態,我們建議專業的侍酒流程:

項目 建議操作
適飲溫度 16°C - 18°C (避免過熱,以免破壞細緻香氣)
醒酒時間 建議瓶醒 (Bottle Breathe) 1-2 小時,或使用寬底醒酒器輕柔醒酒 30-45 分鐘。
推薦酒杯 頂級手工勃艮第寬肚杯 (如 Zalto Burgundy 或 Riedel Sommeliers)
餐酒搭配 白松露燉飯慢烤乳鴿野味料理 (如鹿肉)、或簡單香煎的頂級牛排。避免過於辛辣或醬汁過重的料理,以免掩蓋酒的風采。

🛡️ 友誠酒藏的專業承諾 (Quality Assurance)

對於 Romanée-Conti 這類頂級投資級紅酒,來源 (Provenance)保存狀況 (Condition) 是決定價值的關鍵。

  • 恆溫恆濕倉儲: 我們的所有藏酒均存放於24小時監控的專業酒窖,確保溫度與濕度維持在最佳陳年環境。

  • 真偽保證: 每一瓶酒均經過專家團隊嚴格檢驗酒標、封籤 (Capsule)、軟木塞狀態及水位 (Ullage)。

  • 安全運送: 提供高規格的物流配送,確保美酒完好無損地送達您手中。

我們專營所有年份的羅曼尼·康帝系列:

  • 羅曼尼·康帝 (Romanée-Conti)

  • 拉塔希 (La Tâche)

  • 李其堡 (Richebourg)

  • 羅曼尼聖維旺 (Romanée-St-Vivant)

  • 及其他DRC相關系列

同時供應波爾多五大酒莊及其他世界名酒:

  • 拉菲堡 (Château Lafite Rothschild)

  • 木桐堡 (Château Mouton Rothschild)

  • 瑪歌堡 (Château Margaux)

  • 侯伯王堡 (Château Haut-Brion)

  • 及其他世界頂級名釀

我們提供專業、透明的銷售流程,並確保您的交易資訊及個人資料得到最高規格的保密。請隨時聯繫我們的專家團隊,我們將竭誠為您提供詳細的酒款資訊、報價及收藏建議。

期待能為您服務。

立即洽詢 📲 WhatsApp 諮詢及訂購:92976199

關於友誠酒藏

友誠酒藏以誠信為本,致力於為香港及澳門的客戶搜羅全球頂級佳釀。我們用心挑選每一款酒,不僅提供廣受歡迎的經典酒款,更積極發掘獨具特色的小眾精品。我們堅持所有酒品來源可靠,確保正品,並提供具競爭力的價格。瀏覽我們的精選酒單,或直接聯繫我們,讓友誠酒藏為您推薦心儀的佳釀。

有趣的知識

查看全部