2014年Romanee-Conti 羅曼尼·康帝特級園紅酒

HK$144,735.35
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 = "f691f928-4ec5-4c9b-9979-bcf11f71c19f"; // 促销活动数据 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 == 'bd22b0d8-c507-41c4-bc4d-afcce37ce333' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "bd22b0d8-c507-41c4-bc4d-afcce37ce333", 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);
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = 'f691f928-4ec5-4c9b-9979-bcf11f71c19f'; 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 = 'bd22b0d8-c507-41c4-bc4d-afcce37ce333'; 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 == 'bd22b0d8-c507-41c4-bc4d-afcce37ce333' && 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 = 'bd22b0d8-c507-41c4-bc4d-afcce37ce333'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

【友誠酒藏】— 呈獻世界頂級珍釀,您的專業收藏夥伴

感謝您對【友誠酒藏】的關注。作為一家在港澳台地區擁有多年經驗的頂級名酒供應商,我們致力於提供品質卓越、來源可靠的珍釀及專業收藏服務。

本期焦點:2014年 Romanée-Conti 羅曼尼·康帝特級園

  • 年份: 2014

  • 包裝: 原箱包裝,完好無損

  • 數量: 珍稀釋出,歡迎洽詢

🍷 2014 Domaine de la Romanée-Conti (DRC) 深度品鑑與收藏指南

📊 產品詳細規格參數表 (Technical Specifications)

這款酒被譽為「勃艮第之王」,2014年份展現了極致的優雅與陳年潛力。以下是該年份的詳細技術數據,供專業藏家參考。

規格項目 (Item) 詳細內容 (Details)
酒莊 (Producer) Domaine de la Romanée-Conti (DRC)
產區 (Region) 法國勃艮第 (Burgundy), 夜丘 (Côte de Nuits), 沃恩-羅曼尼 (Vosne-Romanée)
葡萄園等級 (Classification) 特級園 (Grand Cru) - 獨佔園 (Monopole)
葡萄品種 (Grape Variety) 100% 黑皮諾 (Pinot Noir)
年份 (Vintage) 2014
酒精濃度 (ABV) 13% (依具體批次略有不同)
種植方式 (Viticulture) 生物動力法 (Biodynamic)
釀造工藝 (Vinification) 全整串發酵 (Whole Cluster Fermentation),100% 新橡木桶陳釀
年產量 (Production) 極度稀缺 (該年份產量僅約 5,000-6,000 瓶)
適飲期 (Drinking Window) 建議 2028 - 2060+ (需長時間醒酒或陳年)
最佳侍酒溫度 16°C - 18°C

📝 2014年份品飲筆記與專家評分 (Tasting Notes & Ratings)

年份報告: 2014年在勃艮第是一個充滿挑戰但最終呈現「經典風格」的年份。夏季涼爽,但收穫季節氣候理想,使得黑皮諾葡萄保留了極佳的酸度與新鮮的果香。相比於炎熱年份的濃郁,2014年更強調結構感、礦物感與細膩度

口感描述:

  • 香氣: 開瓶後展現出令人窒息的複雜香氣,混合著乾燥玫瑰花瓣、野草莓、黑櫻桃的果香,隨後浮現出東方香料、濕潤森林地表(Forest Floor)及頂級皮革的氣息。

  • 口感: 入口絲滑如綢緞,單寧精緻而緊密。酒體展現出完美的平衡感,酸度明亮,支撐起深邃的餘韻。這是一款「在口中輕盈,在靈魂中沈重」的佳釀。

  • 餘韻: 餘味綿長,持續數分鐘不散,帶有標誌性的礦物鹹感與花香回甘。

專業評分參考:

  • Allen Meadows (Burghound): 97-99分

  • Robert Parker (Wine Advocate): 97分

  • Jancis Robinson: 19/20分


💎 DRC 核心酒款對比分析 (Comparative Analysis)

為了幫助您了解 DRC 系列的差異,我們整理了羅曼尼·康帝特級園與酒莊其他名園的風格對比:

酒款名稱 (Wine) 風格特徵 (Style Characteristics) 市場定位與稀缺性
Romanée-Conti 完美平衡、球體感、哲學性的複雜度。 集優雅與力量於一身,是勃艮第的終極表達。 極致稀缺 (SSS級):價格最高,一瓶難求,通常需配貨購買。
La Tâche 華麗、強勁、結構宏大。 經常被認為是唯一能挑戰康帝地位的酒款,風格更為外放。 非常稀缺 (SS級):獨佔園,陳年潛力極強,投資價值極高。
Richebourg 飽滿、豐富、肌肉感。 展現出強烈的果味與厚實的酒體,具有極佳的陳年實力。 稀缺 (S級):勃艮第最頂級的特級園之一。
Romanée-St-Vivant 優雅、精緻、女性化。 以迷人的花香與細膩的單寧著稱,口感如蕾絲般精巧。 稀缺 (S級):深受喜愛優雅風格的藏家追捧。

🛡️ 投資價值與真偽鑑定承諾 (Investment & Authenticity)

為什麼 2014 Romanée-Conti 值得收藏?

  1. 資產級別 (Asset Class): DRC 羅曼尼·康帝不僅是紅酒,更是全球公認的「流動黃金」。根據 Liv-ex 數據,DRC 指數長期跑贏多數金融產品。

  2. 獨佔園 (Monopole) 優勢: 僅有 1.81 公頃的葡萄園面積,決定了其產量的不可複製性。

  3. 友誠酒藏的專業保障:

    • 來源追溯: 我們所有的 DRC 酒款均來自可靠的歐洲配額商或私人頂級酒窖。

    • 恆溫倉儲: 全程專業恆溫恆濕倉儲,確保酒液處於完美狀態。

    • 驗貨服務: 支持專業人士驗貨,提供高清細節圖(酒標、水位、軟木塞狀態)。


🙋‍♀️ 常見問題 (FAQ) - 專家解答

Q1: 這瓶 2014 年份的 DRC 現在可以喝嗎? 雖然 2014 年份現在已經展現出迷人的香氣,但它仍處於年輕階段。若您決定現在開瓶,建議至少在醒酒器中醒酒 2-3 小時,讓其香氣充分綻放。最佳方案是繼續窖藏 5-10 年,屆時將進入巔峰期。

Q2: 如何辨別 Romanée-Conti 的真偽? DRC 酒瓶具有多項防偽特徵,包括特定的瓶身編號、特殊的玻璃瓶型、軟木塞上的年份烙印以及酒標紙質的紋理。友誠酒藏承諾所有出售酒款均經嚴格審核,並支持第三方鑑定。

Q3: 購買後如何配送? 針對此類高價值商品,我們提供專人專車恆溫配送服務(港澳地區),確保運送過程中不受震動與溫度變化影響。

專營 DRC 全系列及世界頂級名莊

Domaine de la Romanée-Conti 全系列:

  • 拉塔希(La Tâche)

  • 李其堡(Richebourg)

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

  • 及其他各年份DRC系列酒款

精選世界名貴紅酒系列:

  • 拉菲堡(Lafite): 特別呈獻傳奇年份1982

  • 木桐堡(Mouton): 特別呈獻經典年份2000 (金羊年)

  • 瑪歌堡(Margaux)

  • 侯伯王堡(Haut Brion)

  • 及其他世界知名酒莊的頂級紅酒

為何選擇友誠酒藏?

【友誠酒藏】提供具競爭力的市場價格,並擁有經驗豐富的專家團隊,確保交易過程安全可靠。您只需告知您感興趣的酒款,我們將迅速提供您詳盡的酒款資訊與報價。

在您考慮豐富您的收藏時,我們也提供以下優勢:

  • 專業諮詢與即時報價

  • 安全可靠的倉儲與配送服務

  • 靈活安全的支付方式

我們期待能與您建立長期的合作關係,為您的收藏之路提供最專業的服務。若您有任何疑問或需要更多資訊,請隨時與我們聯繫。謝謝。

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

關於友誠酒藏

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

有趣的知識

查看全部