1965年 Romanée-Conti La Tâche 拉塔希特級園紅酒

HK$949,999.05
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 = "08ac70ed-27a9-4c21-897b-1d0899b50065"; // 促销活动数据 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"); const setting = this.flashsaleData.product_setting; const landingUrl = `/promotions/discount-default/${this.flashsaleData.discount_info.id}`; const finalUrl = appDiscountUtils.resolveDiscountHref(setting, landingUrl); if (finalUrl && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(finalUrl, '_blank', 'noopener'); } } // 绑定 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 == '298bc8f6-f531-447e-a34f-402218d4737c' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "298bc8f6-f531-447e-a34f-402218d4737c", 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 = '08ac70ed-27a9-4c21-897b-1d0899b50065'; 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 = '298bc8f6-f531-447e-a34f-402218d4737c'; 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 == '298bc8f6-f531-447e-a34f-402218d4737c' && 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 = '298bc8f6-f531-447e-a34f-402218d4737c'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

友誠酒藏為尊貴的藏家和品酒愛好者提供專業鑑賞服務,誠摯邀請您一同探索 1965年 Romanée-Conti La Tâche 這獨一無二的傳世珍寶。

  • 品酒風采: 1965年的 Romanée-Conti La Tâche 是布根地產區的傳世之作,擁有深沉、豐滿的色澤,散發出複雜而優雅的芳香。口感濃郁飽滿,細緻且持久,完美展現了時間淬煉出的經典風華。

  • 品質承諾: 友誠酒藏以其豐富的專業知識和對頂級佳釀的熱愛而聞名。我們深知1965年 Romanée-Conti La Tâche 的非凡價值,保證酒款來源清晰、儲存狀態完美,並以公道誠懇的市場價格為您呈現,確保這支珍稀葡萄酒得到應有的尊重。

  • 簡易鑑賞流程: 透過我們的聯繫方式,您只需提出洽詢,我們的專業團隊將迅速回應,提供即時的酒款介紹與報價。我們致力於簡化鑑賞流程,讓您輕鬆便捷地收藏您的夢幻逸品。

  • 安心保密: 友誠酒藏極為重視客戶的隱私,所有交易資訊都將受到最嚴格的保密。我們確保您的個人資料和洽購細節都得到完全的保護。

  • 最高標準服務: 我們以提供高品質、高標準的服務為己任。友誠酒藏始終以客戶滿意度為首要目標,努力為您提供最專業、最可靠的頂級酒收藏體驗。

  • 共享價值: 我們深信每一瓶1965年 Romanée-Conti La Tâche 都是獨一無二的藝術品,是時間的見證。透過友誠酒藏的鑑賞服務,讓這份價值得以傳承,共同譜寫葡萄酒世界的奇蹟。

🍷 1965年 Romanée-Conti La Tâche 深度鑑賞與收藏指南

📋 產品詳細規格 (Product Specifications)

此表格旨在為資深藏家提供精確的酒款參數,確保您對這款稀世珍釀有全方位的了解。

規格項目 詳細內容
酒莊 (Producer) Domaine de la Romanée-Conti (DRC)
產區 (Region) 法國勃艮第 (Burgundy) - 沃恩-羅曼尼 (Vosne-Romanée)
等級 (Classification) 特級園 (Grand Cru)
葡萄園屬性 (Vineyard) 獨占園 (Monopole) - 僅此一家,別無分號
葡萄品種 (Grape) 100% 黑皮諾 (Pinot Noir)
年份 (Vintage) 1965 (極稀有年份)
酒精濃度 (ABV) 約 12.5% - 13% (依批次略有不同)
適飲溫度 (Serving Temp) 16°C - 18°C
陳年潛力 (Aging) 收藏級珍品,適合靜態展示或特殊紀念時刻品鑑
醒酒建議 (Decanting) 建議瓶醒 (In-bottle breathing) 30分鐘,老酒需極度溫柔處理
封瓶方式 (Closure) 天然軟木塞 (Natural Cork)

🏰 關於 La Tâche:獨占園的傳奇 (The Legend of La Tâche)

La Tâche 特級園是 DRC 酒莊皇冠上的寶石之一,作為獨占園 (Monopole),意味著這片土地產出的每一滴酒都完全由 DRC 掌控。

  • 風土特色:La Tâche 位於坡度較陡的位置,土壤富含石灰岩與黏土。這種獨特的風土結構賦予了葡萄酒著名的「鐵拳絲絨」(Velvet glove in an iron fist) 風格——在優雅細膩的口感下,隱藏著強大的結構與陳年潛力。

  • 1965年份解讀:對於勃艮第而言,1965年是一個充滿挑戰的年份。正因如此,能夠流傳至今且保存完好的 DRC La Tâche 1965 更顯得鳳毛麟角。這款酒不僅是味蕾的享受,更是歷史的見證,非常適合尋找出生年份酒 (Birth Year Wine) 的藏家或致力於完成 DRC 垂直年份收藏 (Vertical Collection) 的博物館級買家。


💎 收藏價值與真偽鑒定 (Provenance & Authenticity)

對於單價極高的老年份名酒,來源 (Provenance) 即是一切。友誠酒藏承諾為此款珍品提供最高級別的保障:

  1. 水位 (Ullage) 檢查:針對 60 年以上的老酒,我們嚴格檢視水位狀態,確保處於適合收藏的範圍。

  2. 酒標與膠帽 (Label & Capsule):詳細確認酒標的完整性與膠帽的原始狀態,這是鑑定真偽的關鍵細節。

  3. 儲存環境:所有珍稀酒款均存放於恆溫、恆濕的專業酒窖中,避免光線直射與震動,鎖住時光的風味。


🍽️ 餐酒搭配建議 (Food Pairing)

雖然此類古董酒款常被建議單獨品鑑(作為「冥想之酒」),但若搭配餐點,建議選擇風味細膩的菜餚,避免掩蓋老酒脆弱而精緻的香氣:

  • 頂級野味:慢燉野雞、松露鵪鶉。

  • 菌菇料理:牛肝菌燉飯、松露義大利麵。

  • 陳年乳酪:孔泰乳酪 (Comté) 或 艾普瓦斯乳酪 (Époisses)。


🔍 常見問題 (FAQ)

Q: 1965年的 La Tâche 現在還能飲用嗎? A: 1965年的勃艮第紅酒已進入完全成熟期。此時的酒體主要展現的是「第三層香氣」,如乾樹葉、皮革、森林地表與乾果的氣息。對於懂得欣賞老酒韻味的行家,它提供了獨一無二的歷史風味。

Q: 為什麼這款酒的價格如此高昂? A: 除了 DRC 本身的品牌溢價與 La Tâche 的頂級地位外,1965年的產量極低,且經過半個多世紀的消耗,存世量極為稀少。物以稀為貴,這是稀缺性與收藏價值的直接體現。

聯絡我們: 如果您渴望收藏 1965年 Romanée-Conti La Tâche,請即聯繫友誠酒藏,讓我們一同探討這支傳世佳釀的獨特魅力,為您提供最高品質的收藏服務。

📲 WhatsApp 諮詢及訂購:852 92976199

關於友誠酒藏

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

有趣的知識

查看全部