diff --git a/商家端web/品牌管理/数据分析/品牌分销全景分析.html b/商家端web/品牌管理/数据分析/品牌分销全景分析.html index 328fccf..c7c1c64 100644 --- a/商家端web/品牌管理/数据分析/品牌分销全景分析.html +++ b/商家端web/品牌管理/数据分析/品牌分销全景分析.html @@ -608,8 +608,7 @@

📊分销商层级业绩对比

-

🌳团队裂变效果分析

-
+ @@ -835,57 +834,13 @@ }; levelPerformanceChart.setOption(levelPerformanceOption); - // 团队裂变效果分析 - const teamGrowthChart = echarts.init(document.getElementById('teamGrowthChart')); - const teamGrowthOption = { - tooltip: { - trigger: 'axis', - axisPointer: { type: 'shadow' } - }, - legend: { - data: ['直接下级', '间接下级'], - top: 10 - }, - grid: { - left: '3%', - right: '4%', - bottom: '3%', - containLabel: true - }, - xAxis: { - type: 'category', - data: ['TOP1', 'TOP2', 'TOP3', 'TOP4', 'TOP5', 'TOP6', 'TOP7', 'TOP8', 'TOP9', 'TOP10'] - }, - yAxis: { - type: 'value', - name: '团队人数' - }, - series: [ - { - name: '直接下级', - type: 'bar', - stack: 'total', - data: [35, 28, 24, 19, 17, 14, 12, 10, 8, 6], - itemStyle: { color: '#5cb85c' } - }, - { - name: '间接下级', - type: 'bar', - stack: 'total', - data: [93, 68, 58, 46, 41, 34, 30, 25, 20, 16], - itemStyle: { color: '#5bc0de' } - } - ] - }; - teamGrowthChart.setOption(teamGrowthOption); - + // 响应式 window.addEventListener('resize', function() { levelChart.resize(); recruitChart.resize(); orderTypeChart.resize(); levelPerformanceChart.resize(); - teamGrowthChart.resize(); });