1984年 Chateau Latour 拉圖紅酒

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 = "d3a6198e-08ae-441d-8cc8-9a6107e5b64f"; // 促销活动数据 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 == '69d5247f-75e8-4d24-9a0c-9b1dbb601c10' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "69d5247f-75e8-4d24-9a0c-9b1dbb601c10", 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 = 'd3a6198e-08ae-441d-8cc8-9a6107e5b64f'; 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 = '69d5247f-75e8-4d24-9a0c-9b1dbb601c10'; 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 == '69d5247f-75e8-4d24-9a0c-9b1dbb601c10' && 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 = '69d5247f-75e8-4d24-9a0c-9b1dbb601c10'; 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我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

🏆 友誠酒藏 · 呈獻 1984 年拉圖紅酒 · 波爾多特殊年份傳奇 · 限量發售 🏆

友誠酒藏誠意為您呈獻 1984 年 Château Latour 拉圖紅酒。1984 年被波爾多葡萄酒界公認為一個充滿挑戰性的年份。然而,在不利的氣候條件下,拉圖酒莊憑藉其卓越的釀造工藝和嚴格的品質把控,成功釀造出了極具收藏價值的珍稀佳釀。這是一款見證了酒莊非凡實力的歷史典藏,現正限量發售!

🏆 1984 年拉圖紅酒獨特特徵

  • 產區:法國波爾多波雅克 (Pauillac),世界頂級的葡萄酒產區。

  • 酒莊等級:波爾多一級名莊 (Premier Grand Cru Classé),品質與聲譽的最高保證。

  • 葡萄品種:主要為赤霞珠 (Cabernet Sauvignon),搭配梅洛等,完美展現波雅克風土。

  • 風味特點

    • 複雜的成熟黑莓和黑醋栗香氣,層次豐富。

    • 微妙的雪松、皮革和礦物質底色,帶來深邃的風味。

    • 優雅平衡的單寧結構,口感細膩和諧。

💎 1984 年份的稀缺投資價值

作為一個極具挑戰性的年份,1984 年的拉圖紅酒因其稀缺性和獨特性,在收藏市場上備受專業收藏家青睞。這一年份的葡萄酒不僅是品鑒的珍品,更是投資的絕佳選擇。

🔍 收藏價值亮點:

  • 產量極低,市面流通數量稀少,物以稀為貴。

  • 已完成 40 年陳年,風味趨於完美平衡,正值品鑑與收藏的黃金時期。

  • 是波爾多一級名莊頂級工藝的見證,展現拉圖在逆境中依然能釀造出非凡品質的實力。

  • 深受收藏家和投資者的搶手收藏品,市場需求穩定增長。

🍷 深度解析:1984年 Chateau Latour —— 逆境中的王者風範

【酒款檔案:技術規格與風土解碼】

為了讓資深藏家與投資者更清楚了解這款稀世珍釀的構成,我們整理了詳細的技術參數。1984年對於波爾多是一個充滿挑戰的年份,但正因如此,拉圖酒莊(Château Latour)憑藉其雄厚的財力與極致的篩選標準,展現了「一級莊」不可撼動的地位。

規格項目 詳細參數
酒莊名稱 Château Latour (拉圖酒莊)
產區分級 法國波爾多 - 波亞克 (Pauillac) / 1855年分級一級莊 (Premier Grand Cru Classé)
葡萄品種

極高比例赤霞珠 (Cabernet Sauvignon)


(註:因當年氣候導致梅洛成熟度不佳,拉圖大膽棄用梅洛,使得此年份赤霞珠比例高達94%以上,結構感極強)

陳年時間 40年+ (已進入最佳適飲期的成熟階段)
酒精濃度 約 12.5% (古典波爾多風格)
適飲溫度 16°C - 18°C
醒酒建議 老年份紅酒十分脆弱,建議直立靜置24小時沉澱酒渣。開瓶後於瓶中靜置透氣約 30-60 分鐘即可,不建議劇烈醒酒。
軟木塞狀態 原廠陳年軟木塞 (建議使用老酒開瓶器/Ah-So開瓶器開啟)

📜 1984年份報告:為何這是一瓶值得收藏的「出生年份酒」?

在搜尋 1984年波爾多紅酒評價 時,許多人會發現這是一個極具爭議的年份。然而,Château Latour 1984 卻是收藏界公認的「滄海遺珠」。

  • 逆境中的奇蹟:當年8月的惡劣天氣嚴重影響了梅洛(Merlot)的收成。拉圖酒莊毅然決定剔除不達標的葡萄,幾乎完全使用赤霞珠(Cabernet Sauvignon)釀造。這賦予了這款酒極其堅實的骨架、強勁的單寧與超乎想像的陳年潛力

  • 稀缺性與紀念價值:市面上保存完好的1984年一級莊已鳳毛麟角。對於尋找 1984年出生年份酒40週年紀念禮物企業成立紀念酒 的客戶而言,這款酒不僅是味蕾的享受,更是時間的見證。

  • 投資與收藏分析:隨著波爾多老年份酒款庫存逐年遞減,像拉圖這樣具有強大品牌背書且狀態完美的 1984年紅酒,其市場稀缺性將持續推升其潛在價值。


🍽️ 侍酒師指南:品鑑筆記與頂級餐酒搭配

經過40年的歲月洗禮,1984 Château Latour 展現出了老年份波爾多特有的複雜韻味。

【品飲筆記 Tasting Notes】

  • 色澤:呈現深邃的磚紅色至石榴紅邊緣,酒色依然清澈,顯示出其卓越的生命力。

  • 香氣:開瓶後散發出乾燥玫瑰花瓣、雪松木、雪茄盒與陳年皮革的氣息。隨著時間推移,會發展出黑松露、森林地表(Sous-bois)以及些許煙燻礦物感。

  • 口感:入口依然能感受到拉圖標誌性的力量感,但單寧已打磨得如絲般順滑。酸度活躍,支撐起整體的結構,餘韻悠長且帶有回甘的甘草味。

【奢華餐酒搭配建議】

搭配料理類型 推薦菜色 搭配亮點
經典紅肉 慢烤小羊排、熟成肋眼牛排 老酒的細緻單寧與紅肉的油脂完美融合,互相襯托。
野味料理 烤乳鴿、燉鹿肉、野菇燉飯 波亞克紅酒特有的森林氣息與野味是天作之合。
頂級食材 黑松露料理、伊比利火腿 松露的麝香氣息能呼應酒中的陳年風味。
乳酪盤 硬質陳年乳酪 (如 Comté, Mimolette) 避免搭配藍紋乳酪,選擇帶有堅果香氣的硬起司更能引出酒的甜美。

🛡️ 友誠酒藏的專業承諾:老酒鑑定的黃金標準

購買 高價老年份紅酒,來源(Provenance)與保存狀態是決定價值的關鍵。友誠酒藏為您提供業界最高標準的保障:

  1. 液位檢查 (Ullage Check):我們嚴格篩選酒液高度。對於1984年的老酒,我們確保液位處於極佳狀態(Into Neck 或 Top Shoulder),這代表了軟木塞的密封性良好,氧化風險極低。

  2. 酒標與外觀完整性:針對收藏需求,我們詳細檢視酒標的清晰度與膠帽的完整性,確保其作為禮品或藏品的完美外觀。

  3. 恆溫恆濕倉儲:所有珍稀老酒均存放於專業酒窖中,24小時監控溫濕度,避免熱損害與光照影響,讓這瓶 1984 Latour 保持在剛出窖時的休眠狀態。


❓ 常見問題 (FAQ) - 關於1984年拉圖紅酒

Q: 1984年的紅酒現在還能喝嗎?會不會變質? A: 這正是頂級名莊酒的魅力所在。Château Latour 以其驚人的陳年能力著稱。1984年的拉圖因高比例赤霞珠釀造,結構強健,目前正處於適飲期的高峰。只要保存得當(如本公司之倉儲),現在飲用風味絕佳,且仍有數年的陳年潛力。

Q: 這款酒適合送給什麼樣的人? A: 這是非常具備「故事性」的禮物。最適合送給 1984年出生的壽星、慶祝 結婚40週年 (紅寶石婚) 的夫婦,或是喜愛研究波爾多老酒的資深藏家。

Q: 收到酒後需要靜置多久才能開瓶? A: 由於運送過程中的震動可能會擾動瓶底的酒渣(沉澱物),我們強烈建議您在收到酒後,將其直立靜置於陰涼處至少 24至48小時,待酒渣完全沉澱至瓶底後再進行開瓶與品飲,以獲得最純淨的口感。

📦 友誠酒藏 · 您的購酒優勢

友誠酒藏致力於為您提供最優質的頂級葡萄酒。我們確保您購得的每一瓶酒都經過嚴格篩選,品質卓越:

  • 專業鑑定:友誠酒藏擁有資深品酒師及收藏專家組成的團隊,對酒款進行詳細鑑定,確保其真實性與最佳保存狀態。

  • 品質保障:所有酒款均存放於專業恆溫恆濕環境中,完美保留其原始風味和價值。

  • 稀有現貨:1984 年拉圖紅酒市場流通稀少,友誠酒藏現貨供應,機會難得。

  • 品質嚴格標準:我們特別關注酒液位置的完整性、酒標的清晰度、原始木箱或包裝的保存情況,並盡力提供可追溯的存儲歷史和來源證明,確保酒款的珍貴性與可靠性。

❓ 常見問題解答

Q: 1984 年的拉圖紅酒為什麼如此珍貴? A: 1984 年是波爾多葡萄酒生產的挑戰性年份。能在如此艱難的條件下保持優質的拉圖紅酒,展現了酒莊卓越的釀造工藝和對品質的堅持。這種稀缺性和歷史價值使得這一年份的拉圖紅酒在收藏市場上備受推崇,成為稀有的傳奇。

📞 立即解鎖您的葡萄酒收藏價值!

攜手友誠酒藏,將這款珍貴的 1984 年 Château Latour 納入您的珍藏資產。

WhatsApp:92976199

關於友誠酒藏

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

有趣的知識

查看全部