市场
印度尼西亚
世界上最大的穆斯林占多数国家,拥有2.77亿消费者和东南亚最大的经济体,将伊斯兰传统与多样化的区域文化和快速扩张的数字商务基础设施相结合。
8 品牌
穆斯林市场领导者
东南亚最大的经济体,拥有2.75亿消费者和群岛多样性,创始人主导的特色食品、天然美容和传统工艺品牌利用岛屿特定的风土和文化丰富性。
人口
275M
GDP
1.4万亿美元
增长率
5.3%
高端增长
19%
Trade Access for 印度尼西亚 Brands
--
人口
Loading market access data...
Map unavailable in your region. Brands from this market can trade with 150+ countries globally.
按位置探索品牌
全球南方品牌位置交互式地图。使用邻近搜索、查看区域集群并探索附近品牌。
互动地图暂时无法在您所在地区使用。我们正在开发适用于中国的解决方案。
解锁高级专属访问,按增长信号筛选
website: feature.properties.website || '',
tier: feature.properties.contentTier || '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 = 'indonesia-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)
*/}}相关洞察
🇷🇺
🇨🇳
🇮🇳
🇻🇳
🇮🇩
+13
15 分钟阅读
在46个互不相干的市场,同一代创始人几乎同时步入企业易主的年龄——而这一切,在任何一份机构数据库或投资分析里,都几乎无迹可寻。
🇮🇩
🇵🇭
🇹🇭
🇮🇳
🇲🇾
+11
20 分钟阅读
前两篇论文论证了创始人交接浪潮的存在,以及标准工具为何看不见它。本文揭示的是改用阅读这种方式会看到什么。浪潮此刻在哪里显现,以及在二十三宗追踪到结局的交接案例中,反复出现的选择模式。
🇮🇩
10 分钟阅读
这个全球第一的穆斯林时尚生态,由一群创始人建成——他们的规模、危机与股权,全部记录只存在于印尼语中。
🇮🇩
🇹🇷
9 分钟阅读
二十九年战争换不来亚齐的和平:停火一再崩溃,谁都不肯先让步。一场海啸夺走十七万条生命,反而在232天内逼出了双方签字的协议。
🇮🇩
11 分钟阅读
四位土生华人女性在四十年间筑起印尼*jamu*(印尼传统草药)产业的商业基础。百年之后,这些创始家族王朝迎来首次代际传承——机构数据库尚未注意到这一切。
🇮🇩
12 分钟阅读
在印尼各大食品集团与一百六十万家微型生产商之间,一批历经危机的创始人品牌占据着一个没有任何数据库追踪、没有分析师覆盖的营收地带。
🇮🇩
7 分钟阅读
两波浪潮,一个窗口:印尼的传承危机正沿两条时间线同步推进,清真认证截止日期正在催逼节奏。
🇮🇩
10 分钟阅读
丁香曾是地球上独一无二的物产,特尔纳特苏丹国垄断了这一资源长达数千年。直到一位法国植物学家用一袋被盗的种子,在一代人之内摧毁了这一延续千年的垄断。
即将推出
高级功能:CSV导出
CSV导出功能仅对高级会员开放!该功能允许您导出筛选后的搜索结果,以便进行离线分析、制作演示文稿或与您自己的工具集成。高级会员可以无限制地在所有目录中导出CSV。