diff --git a/src/components/v-labelDiv/index.vue b/src/components/v-labelDiv/index.vue
index eb2df3f..079c98b 100644
--- a/src/components/v-labelDiv/index.vue
+++ b/src/components/v-labelDiv/index.vue
@@ -1,7 +1,7 @@
+
+
+
+
+
+
+
diff --git a/src/views/MarketingComparison/mcChannelDistribution/index.vue b/src/views/MarketingComparison/mcChannelDistribution/index.vue
new file mode 100644
index 0000000..765a58b
--- /dev/null
+++ b/src/views/MarketingComparison/mcChannelDistribution/index.vue
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
diff --git a/src/views/MarketingComparison/mcChannelDistribution/opt.js b/src/views/MarketingComparison/mcChannelDistribution/opt.js
new file mode 100644
index 0000000..87608fd
--- /dev/null
+++ b/src/views/MarketingComparison/mcChannelDistribution/opt.js
@@ -0,0 +1,188 @@
+/*
+ * @Author: your name
+ * @Date: 2021-10-15 15:15:27
+ * @LastEditTime: 2021-11-03 15:46:49
+ * @LastEditors: Please set LastEditors
+ * @Description: In User Settings Edit
+ * @FilePath: /data-show/src/views/BrandComparison/channelDistribution/opt.js
+ */
+import * as echarts from "echarts";
+let colors = [new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+ {
+ offset: 0,
+ color: '#3373CC'
+ },
+ {
+ offset: 1,
+ color: '#071a32'
+ }
+], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+ {
+ offset: 0,
+ color: '#63AECC'
+ },
+ {
+ offset: 1,
+ color: '#071a32'
+ }
+], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+ {
+ offset: 0,
+ color: '#54BF93'
+ },
+ {
+ offset: 1,
+ color: '#071a32'
+ }
+], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+ {
+ offset: 0,
+ color: '#CC9D12'
+ },
+ {
+ offset: 1,
+ color: '#071a32'
+ }
+], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+ {
+ offset: 0,
+ color: '#CC7733'
+ },
+ {
+ offset: 1,
+ color: '#071a32'
+ }
+], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
+ {
+ offset: 0,
+ color: '#CC5B41'
+ },
+ {
+ offset: 1,
+ color: '#071a32'
+ }
+], false)]
+export default function createOpt() {
+ return {
+ grid: {
+ top: "56px",
+ left: "16px",
+ right: "28px",
+ bottom: "16px",
+ containLabel: true,
+ },
+ color: colors,
+ legend: {
+ data: ['奥迪', '宝马', '奔驰', '吉利', '大众', '别克'],
+ textStyle: { //图例文字的样式
+ color: '#fff'
+ },
+ y: 12,
+ x: 16
+ },
+ tooltip: {
+ trigger: "axis",
+ backgroundColor: "#08182F",
+ color: "#fff",
+ borderColor: "#3373CC",
+ textStyle: {
+ color: "#fff", //设置文字颜色
+ },
+ extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;",
+ },
+ xAxis: [
+ {
+ type: 'category',
+ axisTick: {
+ show: false,
+ },
+ axisLine: {
+ show: false,
+ lineStyle: {
+ color: "#fff",
+ },
+ },
+ data: ['新闻', '论坛', '微信', 'APP', '微博', "其他"]
+ }
+ ],
+ yAxis: [
+ {
+ type: 'value',
+ axisLine: {
+ show: false,
+ lineStyle: {
+ color: "#FFF",
+ },
+ },
+ splitLine: {
+ lineStyle: {
+ type: "dashed", // y轴分割线类型
+ color: "#012b4b",
+ },
+ },
+ }
+ ],
+ series: [
+ {
+ name: '奥迪',
+ type: 'bar',
+ barGap: '9%',
+ barWidth: 16,
+ emphasis: {
+ focus: 'series'
+ },
+ data: [320, 332, 301, 334, 390, 400]
+ },
+ {
+ name: '宝马',
+ type: 'bar',
+ barWidth: 16,
+ barGap: '9%',
+ emphasis: {
+ focus: 'series'
+ },
+ data: [220, 182, 191, 234, 290, 300]
+ },
+ {
+ name: '奔驰',
+ type: 'bar',
+ barWidth: 16,
+ barGap: '9%',
+ emphasis: {
+ focus: 'series'
+ },
+ data: [150, 232, 201, 154, 190, 200]
+ },
+ {
+ name: '吉利',
+ type: 'bar',
+ barWidth: 16,
+ barGap: '9%',
+ emphasis: {
+ focus: 'series'
+ },
+ data: [98, 77, 101, 99, 40, 44]
+ },
+ {
+ name: '大众',
+ type: 'bar',
+ barWidth: 16,
+ barGap: '9%',
+ emphasis: {
+ focus: 'series'
+ },
+ data: [198, 177, 101, 199, 140, 145]
+ },
+ {
+ name: '别克',
+ type: 'bar',
+ barWidth: 16,
+ barGap: '9%',
+ emphasis: {
+ focus: 'series'
+ },
+ data: [298, 277, 201, 299, 240, 250]
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/src/views/MarketingComparison/mcChooseModel/index.vue b/src/views/MarketingComparison/mcChooseModel/index.vue
new file mode 100644
index 0000000..339f635
--- /dev/null
+++ b/src/views/MarketingComparison/mcChooseModel/index.vue
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
diff --git a/src/views/MarketingComparison/mcIVC/index.vue b/src/views/MarketingComparison/mcIVC/index.vue
new file mode 100644
index 0000000..bda8f44
--- /dev/null
+++ b/src/views/MarketingComparison/mcIVC/index.vue
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
diff --git a/src/views/MarketingComparison/mcOSVC/index.vue b/src/views/MarketingComparison/mcOSVC/index.vue
new file mode 100644
index 0000000..74c5a4a
--- /dev/null
+++ b/src/views/MarketingComparison/mcOSVC/index.vue
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
diff --git a/src/views/MarketingComparison/mcTOPMedia/index.vue b/src/views/MarketingComparison/mcTOPMedia/index.vue
new file mode 100644
index 0000000..265d1d1
--- /dev/null
+++ b/src/views/MarketingComparison/mcTOPMedia/index.vue
@@ -0,0 +1,242 @@
+
+
+
+
+
+
+
diff --git a/src/views/MarketingComparison/mcTOPMedia/v-ranking-bcm/index.vue b/src/views/MarketingComparison/mcTOPMedia/v-ranking-bcm/index.vue
new file mode 100644
index 0000000..3760c07
--- /dev/null
+++ b/src/views/MarketingComparison/mcTOPMedia/v-ranking-bcm/index.vue
@@ -0,0 +1,232 @@
+
+
+
+
+
+
+ {{ num|numStr }}
+
+
+
{{label}}
+
+ 传播量
+ {{val}}
+
+
+
+
+
+
+
+
+