行业
葡萄酒
生产表达独特风土和葡萄栽培传统的特色品种的优质酒庄。这些酿酒师将传统知识与现代技术相结合,创造出展示地区特色和创新方法的复杂且富有表现力的葡萄酒。
63 品牌
未发现的风土
来自新兴地区的高端葡萄酒在全球市场完全认识其潜力之前提供质量价格优势。这些酒庄提供早期进入可能成为下一个受追捧产区的风土的机会。
按位置探索品牌
新兴市场品牌位置交互式地图。使用邻近搜索、查看区域集群并探索附近品牌。
互动地图暂时无法在您所在地区使用。我们正在开发适用于中国的解决方案。
解锁高级专属访问,按增长信号筛选
website: feature.properties.website || '',
tier: feature.properties.arcStatus || 'basic'
}));
this.loading = false;
// Update hero brand count
const heroCount = document.getElementById('hero-brand-count');
if (heroCount) {
const brandWord = this.brands.length === 1 ? '个品牌' : '品牌';
heroCount.innerHTML = this.brands.length + ' ' + brandWord;
}
console.log('Loaded ' + this.brands.length + ' brands for ' + taxonomyType + ': ' + termSlug);
} catch (error) {
console.error('Error loading brand data:', error);
this.brands = [];
this.loading = false;
}
// Initialize filters from URL parameters
const params = new URLSearchParams(window.location.search);
if (params.has('search')) this.search = params.get('search');
if (params.has('country')) this.country = params.get('country');
if (params.has('tier')) this.brandTier = params.get('tier');
if (params.has('website')) this.hasWebsite = params.get('website') === 'true';
// Watch for filter changes and update URL (debounced for search)
let searchTimeout;
this.$watch('search', () => {
clearTimeout(searchTimeout);
searchTimeout = setTimeout(() => this.updateURL(), 300);
});
this.$watch('country', () => this.updateURL());
this.$watch('brandTier', () => this.updateURL());
this.$watch('hasWebsite', () => this.updateURL());
},
updateURL() {
const params = new URLSearchParams();
if (this.search) params.set('search', this.search);
if (this.country) params.set('country', this.country);
if (this.brandTier) params.set('tier', this.brandTier);
if (this.hasWebsite) params.set('website', 'true');
const newURL = params.toString()
? window.location.pathname + '?' + params.toString()
: window.location.pathname;
window.history.pushState({}, '', newURL);
},
get activeFilterCount() {
let count = 0;
if (this.search) count++;
if (this.country) count++;
if (this.brandTier) count++;
if (this.hasWebsite) count++;
return count;
},
get filteredBrands() {
return this.brands.filter(brand => {
const matchesSearch = !this.search || brand.name.toLowerCase().includes(this.search.toLowerCase());
const matchesCountry = !this.country || brand.countryCode === this.country;
const matchesTier = !this.brandTier || brand.tier === this.brandTier;
const matchesWebsite = !this.hasWebsite || brand.website;
return matchesSearch && matchesCountry && matchesTier && matchesWebsite;
});
},
get sortedBrands() {
return [...this.filteredBrands].sort((a, b) => {
let aVal, bVal;
if (this.sortBy === 'founded') {
aVal = a.founded || 0;
bVal = b.founded || 0;
} else if (this.sortBy === 'tier') {
const tierOrder = { 'complete': 3, 'partial': 2, 'basic': 1 };
aVal = tierOrder[a.tier] || 0;
bVal = tierOrder[b.tier] || 0;
} else if (this.sortBy === 'country') {
aVal = a.country || '';
bVal = b.country || '';
} else if (this.sortBy === 'city') {
aVal = a.city || '';
bVal = b.city || '';
} else {
aVal = a.name || '';
bVal = b.name || '';
}
if (this.sortDirection === 'asc') {
return aVal > bVal ? 1 : aVal < bVal ? -1 : 0;
} else {
return aVal < bVal ? 1 : aVal > bVal ? -1 : 0;
}
});
},
get visibleCount() {
return this.filteredBrands.length;
},
get uniqueCountries() {
return [...new Set(this.brands.map(b => b.countryCode).filter(c => c))].sort();
},
getCountryName(code) {
const countryNames = {
'ru': '俄罗斯',
'cn': '中国',
'mn': '蒙古',
'et': '埃塞俄比亚',
'in': '印度'
};
return countryNames[code] || code.toUpperCase();
},
clearAllFilters() {
this.search = '';
this.country = '';
this.brandTier = '';
this.hasWebsite = false;
},
removeFilter(filterName) {
if (filterName === 'search') this.search = '';
else if (filterName === 'country') this.country = '';
else if (filterName === 'tier') this.brandTier = '';
else if (filterName === 'website') this.hasWebsite = false;
},
sortTable(column) {
if (this.sortBy === column) {
this.sortDirection = this.sortDirection === 'asc' ? 'desc' : 'asc';
} else {
this.sortBy = column;
this.sortDirection = (column === 'founded') ? 'desc' : 'asc';
}
},
downloadCSV() {
const headers = ['Brand', 'City', 'Country', 'Founded', 'Website', 'Tier'];
let csv = headers.join(',') + '\n';
this.sortedBrands.forEach(brand => {
const rowData = [
this.escapeCSV(brand.name),
this.escapeCSV(brand.city || '—'),
this.escapeCSV(brand.country || '—'),
this.escapeCSV(brand.founded ? String(brand.founded) : '—'),
this.escapeCSV(brand.website || '—'),
this.escapeCSV(brand.tier)
];
csv += rowData.join(',') + '\n';
});
const blob = new Blob([csv], { type: 'text/csv;charset=utf-8;' });
const link = document.createElement('a');
const url = URL.createObjectURL(blob);
const today = new Date().toISOString().split('T')[0];
let filename = 'wine-directory-' + today;
if (this.activeFilterCount > 0) {
filename += '-filtered';
}
filename += '.csv';
link.setAttribute('href', url);
link.setAttribute('download', filename);
link.style.visibility = 'hidden';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
},
escapeCSV(str) {
if (!str) return '';
const comma = String.fromCharCode(44);
const quote = String.fromCharCode(34);
const newline = String.fromCharCode(10);
if (str.includes(comma) || str.includes(quote) || str.includes(newline)) {
return quote + str.replace(new RegExp(quote, 'g'), quote + quote) + quote;
}
return str;
}
}" class="directory-table-container">
加载中...
| 品牌
| 城市
| 国家
| 年份
| 网站 | 级别
|
|---|
| 加载中... |
| No brands found matching your criteria. |
| | | | 访问
— | 韧性
已建档
已列出 |
End of Directory Listing (Hub-only feature)
*/}}相关洞察
8 分钟阅读
塞尔维亚2000年后的创业一代——葡萄酒、拉基亚、有机食品——如今年龄介于50至68岁之间。欧盟入盟倒计时已经开启,却无人持续追踪。
8 分钟阅读
塞尔维亚葡萄酒从零重建于1990年,用35年时间打磨出西方无从基准的本土品种。制裁、通胀、疫情——都没有压垮这批创始人。现在,通往中国的窗口刚刚开启。
🇷🇺
10 分钟阅读
一座三千至四千万欧元的克里米亚庄园,一次无案可查的总统到访,一位深藏于离岸壳公司、至今无从确认的所有者。这就是俄罗斯的权贵酿酒——品质可买,主人难寻。
🇷🇺
11 分钟阅读
2022年,俄罗斯最大葡萄酒进口商停业整整一天。随后重启,聘来帝亚吉欧高管,开始构建出口战略。这层无人关注的分销网络,正在重新书写自己的故事。
12 分钟阅读
二十年来最严重的出口危机与全球最高荣誉同期降临。三家旗舰酒庄陷入困境——破产、重组、继承权官司——梅内姆时代的创始一代正集体步入传承窗口。
🇬🇪
8 分钟阅读
2006年俄罗斯禁运在两年内摧毁了格鲁吉亚87%的葡萄酒出口收入。熬过禁运的那批创始人,如今正进入接班窗口期。
🇱🇧
7 分钟阅读
三场危机。三个行业。30至40位创始人在绝境中求存——至今没有一位机构投资者找到他们。
🇵🇪
9 分钟阅读
阿利科普刚刚以7220万美元收购了一个大多数投资者从未听说过的超级食品品牌。还有六个行业等待发掘,创始人们没有接班方案。
🇿🇦
7 分钟阅读
三轮改革浪潮,三个创始人群体,接班压力同步叠加。南非后种族隔离时期创始人正在老去,接班体系近乎空白。
🇺🇿
8 分钟阅读
二十五年压制。一代幸存者同步老去——隐形、无计划、窗口已开。
7 分钟阅读
用四分之一世纪铸就智利出口经济的创始人一代正步入交接窗口——却只有15%持有接班方案。
9 分钟阅读
三十年五场危机锻造的一代创始人正步入交接窗口。已有买家持有四个阿根廷品牌。
9 分钟阅读
寡头身后,一代农业创始人在无人关注的小众赛道上构建了真正的品牌。他们正在老去,却毫无传承规划。
🇧🇷
10 分钟阅读
熬过了超级通货膨胀、六次货币更迭与储蓄冻结的一代创始人,正步入交接期——而大多数人毫无准备。
8 分钟阅读
一代依靠政治庇护建立帝国的创始人在2018年骤失屏障。迄今只有一笔PE交易。
🇷🇺
8 分钟阅读
二〇一四年卢布崩溃,俄罗斯唯一的阿布哈兹葡萄酒进口商从行业中游一跃成为全国第一——不靠任何战略,靠的是一场无人预见的货币危机。
🇷🇺
14 分钟阅读
一瓶酒在拍卖会上拍出75万卢布。葡萄品种:克拉斯诺斯托普·佐洛托夫斯基。本土品种正击败勃艮第与巴罗洛,俄罗斯葡萄酒革命世界看不见,却不可忽视。
🇷🇺
9 分钟阅读
如果最好的传承方式是离开家族企业而非继承它呢?乌祖诺夫家族发现了一个深刻道理:知识完全可以在没有机构传递的情况下实现真正的跨代延续。
🇷🇺
10 分钟阅读
一位精品酿酒师以数千万欧元收购了产量达60倍于己的苏联工业巨头酒庄——拥有2700公顷葡萄园、1150万瓶年产能和地下石灰岩酒窖等庞大资产。他没有合并品牌追求规模效应,而是构建了彻底分离的平行品牌架构。真正的成功秘诀在于清醒地认识到什么绝对不该合并。
🇷🇺
9 分钟阅读
全球仅有3%的家族企业能够成功存活到第五代。俄罗斯顿河谷的希米切夫家族战胜了这一惊人概率——他们代代相传的不是财富,而是使命。
🇷🇺
10 分钟阅读
所有银行均拒绝贷款,十五年事业危在旦夕。阿布拉莫维奇的投资圈子收购70%股份——四年后成功退出,酒庄入选世界最佳葡萄园第80位。
🇷🇺
9 分钟阅读
4.63亿美元保险退出。1.1亿美元葡萄酒赌注。俄罗斯首个帕克91分葡萄酒。尼古拉耶夫家族选择离开——证明论点后的使命完成。
🇷🇺
18 min
六十七天,完成了二十年的传承。十二个月后,Forbes俄罗斯评出年度酒庄。萨姆索诺夫用结构打败了命运——60–70%的创始人交接以失败告终,他没有。
🇷🇺
🇪🇹
🇲🇳
10 分钟阅读
危机来袭时,新兴市场品牌不急于寻找供应商——他们已经拥有葡萄园、橡木桶厂、仓库和分销网络。稳定期看似低效的基础设施所有权,在危机期成为竞争对手无法仅凭资本复制的特定资产。从蒙古草原到俄罗斯南部半岛,垂直整合正在重塑新兴市场竞争格局。
19 分钟阅读
阿布哈兹曾占俄罗斯葡萄酒进口的一成——随后消费税风暴、散装酒依赖和竞争加剧将份额打至1.75%。从战火中走出的产业,正面临更棘手的考验。
8 min
阿布哈兹以涉嫌间谍活动驱逐联合国专家。阿尔贡公开称政府行为“令人作呕”——为捍卫行业未来甘冒一切风险。
🇷🇺
8 min
制裁封闭欧洲的冬天,却没能封住法纳戈里亚。九十天内八十万瓶改道中国;先发制人,分销优势沉淀数年——苏联工业底气,才是这场逆转的真正引擎。
🇷🇺
8 min
1.1亿美元押注无人问津的俄罗斯风土,国际投资者全部看空。十五年后,Lefkadia跻身世界前三十。
🇷🇺
6 min
鲍里斯·季托夫拯救了一座一百三十六年的帝国庄园,又将它交给儿子。制裁在第八年到来——那才是真正的传承考场,帕维尔的答卷就此开始。
🇷🇺
8 min
父亲守护顿河谷本土葡萄二十三年。儿子接手后,那瓶酒在俄罗斯首次拍卖会上拍出75万卢布。
即将推出
高级功能:CSV导出
CSV导出功能仅对高级会员开放!该功能允许您导出筛选后的搜索结果,以便进行离线分析、制作演示文稿或与您自己的工具集成。高级会员可以无限制地在所有目录中导出CSV。