From 590613bbd60e1b672fbd75cfff85b1fff9404d4a Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Sat, 16 Oct 2021 14:46:27 +0800 Subject: [PATCH] cxw-010203 --- .../brandRearWingComparison/index.vue | 39 +++++ .../brandRearWingComparison/opt.js | 147 ++++++++++++++++++ .../index.vue | 88 +++++++++++ src/views/BrandComparison/index.vue | 25 ++- 4 files changed, 297 insertions(+), 2 deletions(-) create mode 100644 src/views/BrandComparison/brandRearWingComparison/index.vue create mode 100644 src/views/BrandComparison/brandRearWingComparison/opt.js create mode 100644 src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue diff --git a/src/views/BrandComparison/brandRearWingComparison/index.vue b/src/views/BrandComparison/brandRearWingComparison/index.vue new file mode 100644 index 0000000..6555c5a --- /dev/null +++ b/src/views/BrandComparison/brandRearWingComparison/index.vue @@ -0,0 +1,39 @@ + + + + + + diff --git a/src/views/BrandComparison/brandRearWingComparison/opt.js b/src/views/BrandComparison/brandRearWingComparison/opt.js new file mode 100644 index 0000000..346d8e9 --- /dev/null +++ b/src/views/BrandComparison/brandRearWingComparison/opt.js @@ -0,0 +1,147 @@ +/* + * @Author: your name + * @Date: 2021-10-12 10:11:24 + * @LastEditTime: 2021-10-15 11:56:55 + * @LastEditors: Please set LastEditors + * @Description: In User Settings Edit + * @FilePath: /data-show/src/views/BrandInsight/titsopo/opt.js + */ +export default function createOpt() { + return { + grid: { + left: 16, + right: 26, + bottom: 16, + top: 52, + containLabel: true + }, + tooltip: { + trigger: "axis", + backgroundColor: "#08182F", + color: "#fff", + borderColor: "#3373CC", + textStyle: { + color: "#fff", //设置文字颜色 + }, + extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;" + }, + legend: { + icon: 'roundRect', + textStyle: { //图例文字的样式 + color: '#fff' + }, + y: 12, + x: 16 + }, + xAxis: { + type: 'category', + boundaryGap: false, + axisTick: { + show: false, + }, + axisLine: { + show: false, + lineStyle: { + color: "#fff", + }, + }, + data: ['00:00', '04:00', '08:00', '12:00', '16:00', '20:00', '24:00'] + }, + yAxis: { + type: 'value', + axisLine: { + show: false, + lineStyle: { + color: "#fff", + }, + }, + splitLine: { + lineStyle: { + type: "dashed", // y轴分割线类型 + color: "#012b4b", + }, + }, + }, + series: [ + { + name: '奥迪', + type: 'line', + stack: 'Total', + symbol: 'none', + areaStyle: { + opacity: 0.4 + }, + emphasis: { + focus: 'series' + }, + data: [2000, 1600, 1000, 2200, 2300, 2100, 1900] + }, + { + name: '宝马', + type: 'line', + stack: 'Total', + symbol: 'none', + areaStyle: { + opacity: 0.4 + }, + emphasis: { + focus: 'series' + }, + data: [1000, 1100, 1300, 2000, 1800, 2100, 1600] + }, + { + name: '奔驰', + type: 'line', + stack: 'Total', + symbol: 'none', + areaStyle: { + opacity: 0.4 + }, + emphasis: { + focus: 'series' + }, + data: [1200, 1200, 1400, 2100, 1400, 1900, 2000] + }, + { + name: '吉利', + type: 'line', + stack: 'Total', + symbol: 'none', + areaStyle: { + opacity: 0.4 + }, + emphasis: { + focus: 'series' + }, + data: [1200, 1200, 1350, 1550, 1750, 1900, 2000] + }, + { + name: '大众', + type: 'line', + stack: 'Total', + symbol: 'none', + areaStyle: { + opacity: 0.4 + }, + emphasis: { + focus: 'series' + }, + data: [1260, 1280, 1390, 1570, 1790, 1950, 2020] + }, + { + name: '别克', + type: 'line', + stack: 'Total', + symbol: 'none', + areaStyle: { + opacity: 0.4 + }, + emphasis: { + focus: 'series' + }, + data: [1260, 1280, 1390, 1570, 1790, 1950, 2020] + }, + + ] + } +} diff --git a/src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue b/src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue new file mode 100644 index 0000000..5d59340 --- /dev/null +++ b/src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue @@ -0,0 +1,88 @@ + + + + + + diff --git a/src/views/BrandComparison/index.vue b/src/views/BrandComparison/index.vue index e174322..0bb6cda 100644 --- a/src/views/BrandComparison/index.vue +++ b/src/views/BrandComparison/index.vue @@ -1,7 +1,7 @@