特性
第二代
领导权已成功从创始人过渡到第二代家族成员的品牌,展示继承规划和家族延续。
20 品牌
继承已验证
第二代领导证明最艰难的商业过渡已经过去。愿景在创始人之后存续——现在已制度化。这些品牌提供低风险的家族企业投资机会,具有依赖创始人的竞争对手所缺乏的治理成熟度和运营连续性。
按位置探索品牌
新兴市场品牌位置交互式地图。使用邻近搜索、查看区域集群并探索附近品牌。
互动地图暂时无法在您所在地区使用。我们正在开发适用于中国的解决方案。
解锁高级专属访问,按增长信号筛选
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 = 'second-generation-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)
*/}}相关洞察
🇨🇳
9 分钟阅读
中国餐饮市场规模达5.5万亿元,按门店数计算,连锁化率却只有5%。撑起这个例外的创始人们,正在老去,几乎没有人为交接定下正式计划。
🇮🇩
10 分钟阅读
这个全球第一的穆斯林时尚生态,由一群创始人建成——他们的规模、危机与股权,全部记录只存在于印尼语中。
🇲🇾
9 分钟阅读
几位创始人用三场危机建起了马来西亚现代烘焙业。2024至2026年间,他们正在同步交棒——而几乎无人在旁见证。
🇰🇬
9 分钟阅读
三场革命、两次卢布崩溃、一位创始人被捕入狱、清真香肠的猪肉DNA风波——吉尔吉斯食品创业者历经这一切,今天仍在掌舵各自的品牌。
🇸🇦
11 分钟阅读
沙特阿拉伯坐拥全球最大的阿拉伯香水市场。主导国际话语的,清一色是阿联酋品牌。四大沙特本土世家合占近三分之一份额,锚定本土赛道。
🇲🇾
10 分钟阅读
怡保一家创立于1957年的老字号,第三代主厨48岁猝逝,至今无人公开接班。横跨整整一代的马来西亚创始人老字号餐厅,正同时走到传承关口——没有任何数据库记录过这件事。
🇲🇾
12 分钟阅读
2021年,菲律宾巨头以19.25亿令吉收购一家马来西亚饼干厂。这笔钱买的不是饼干,而是饼干背后那枚能打开逾百国市场的清真认证印章。
🇲🇾
14 分钟阅读
五大华裔和土著支柱品牌正同步进入代际交接(2019–2024),只有皇家雪兰莪(Royal Selangor)凭2002年家族宪章留下了成文治理模板。
🇲🇾
11 分钟阅读
马来西亚传统精品酒店梯队已有三起创始人传承交接在案,约六成2008至2015年队列创始人仍处于传承过渡期——机构数据库对此一无所记录。
🇲🇾
9 分钟阅读
马来西亚的学校、学院与大学,由同一批步入暮年的创始人一手缔造——其中数个家族同时掌控全部三个学段,而这一代创始人,正在同步将整套体系移交下一代。
🇲🇾
13 分钟阅读
马来西亚单一最大美业连锁,三国共有130余家分店,任何英文数据库都未收录。哈南医生只是故事的一半——另一半是Vidal Sassoon训练背景的华裔传承一代。
🇹🇭
11 分钟阅读
三次传承已告完成。一位74岁的创始家长仍守着1985年的那把椅子,尚无接班人命名。泰国餐饮的代际更迭时刻,没有一家数据库察觉。
🇹🇭
9 分钟阅读
泰国草药世家扛过了政府价格管控危机、私募收购的控股伪装与K-pop工厂检查的连番考验。可投资层比看起来更小,也更经得住推敲。
🇹🇭
11 分钟阅读
工厂被洪水淹没,女儿辞去讲师职位只身赴曼谷,合作社在创始人身后靠股权结构延续了整整十二年。泰国茶咖啡行业的故事,一直隐而不显。
🇹🇭
13 分钟阅读
13个创始人主导的独立酒店集团,25年内历经三场危机,始终缺席西方机构数据库。2024年9月,米其林终于将这一梯队带入全球视野。
🇷🇺
11 分钟阅读
2023年1月,瑞士对俄手表出口跌至零。这个数字被报道,被遗忘了。而那个被遗留在身后的珠宝与制表行业,早已在无人察觉中悄悄建立了整整三十年。
🇷🇺
8 min
父亲守护顿河谷本土葡萄二十三年。儿子接手后,那瓶酒在俄罗斯首次拍卖会上拍出75万卢布。
即将推出
高级功能:CSV导出
CSV导出功能仅对高级会员开放!该功能允许您导出筛选后的搜索结果,以便进行离线分析、制作演示文稿或与您自己的工具集成。高级会员可以无限制地在所有目录中导出CSV。