From 36a36b779c5a2f9c5d0c4efce372ea6808885e9a Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Mon, 1 Nov 2021 16:52:19 +0800 Subject: [PATCH] cxw-010203 --- src/api/ModelInsight/index.js | 39 ++- src/views/BrandInsight/titsopo/index.vue | 75 +++--- src/views/ModelInsight/index.vue | 10 +- .../mlForumCommunicationTrend/index.vue | 41 +++- .../mlForumCommunicationTrend/opt.js | 14 +- .../mlForumHotTopicDirection/index.vue | 118 +++++++-- .../mlForumHotTopicDirection/opt.js | 78 ++++++ .../v-ranking-fhtd/index.vue | 230 ------------------ .../ModelInsight/mlSpreadTOPmodels/index.vue | 93 ++++++- .../ModelInsight/mlSpreadTOPmodels/opt.js | 154 +++++------- 10 files changed, 465 insertions(+), 387 deletions(-) create mode 100644 src/views/ModelInsight/mlForumHotTopicDirection/opt.js delete mode 100644 src/views/ModelInsight/mlForumHotTopicDirection/v-ranking-fhtd/index.vue diff --git a/src/api/ModelInsight/index.js b/src/api/ModelInsight/index.js index 094360b..ef833cc 100644 --- a/src/api/ModelInsight/index.js +++ b/src/api/ModelInsight/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-28 16:40:48 - * @LastEditTime: 2021-11-01 15:49:49 + * @LastEditTime: 2021-11-01 16:39:32 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/api/ModelInsight/index.js @@ -109,3 +109,40 @@ export function getCountTime0528(params) { } }) } + +// 车型-论坛传播态势 +export function getBbsCountTime(params) { + let obj = Object.assign({action: 'getBbsCountTime', sType: 'BbsSeries'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 车型-调性占比 +export function getAffections2(params) { + let obj = Object.assign({action: 'getAffections', sType: 'BbsSeries', 'iBBsType':1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 车型-阅读量占比分布 +export function getClicksDistribution(params) { + let obj = Object.assign({action: 'getClicksDistribution', sType: 'BbsSeries', 'iBBsType':1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} \ No newline at end of file diff --git a/src/views/BrandInsight/titsopo/index.vue b/src/views/BrandInsight/titsopo/index.vue index 3e8fde9..ff78d75 100644 --- a/src/views/BrandInsight/titsopo/index.vue +++ b/src/views/BrandInsight/titsopo/index.vue @@ -1,7 +1,7 @@ @@ -43,11 +110,20 @@ export default { width: 630px; height: 412px; margin-left: 16px; - .fhtd-inner { - padding: 0px 16px 16px 16px; - height: auto; + .wp-inner { + width: 100%; + height: calc(100% - 48px); display: flex; justify-content: flex-start; + .wp-in-d1 { + width: 310px; + height: 100%; + } + .wp-in-d2 { + width: 310px; + height: auto; + margin-left: 16px; + } } } \ No newline at end of file diff --git a/src/views/ModelInsight/mlForumHotTopicDirection/opt.js b/src/views/ModelInsight/mlForumHotTopicDirection/opt.js new file mode 100644 index 0000000..fe387e3 --- /dev/null +++ b/src/views/ModelInsight/mlForumHotTopicDirection/opt.js @@ -0,0 +1,78 @@ +/* + * @Author: your name + * @Date: 2021-10-12 15:14:58 + * @LastEditTime: 2021-11-01 15:36:27 + * @LastEditors: Please set LastEditors + * @Description: In User Settings Edit + * @FilePath: /data-show/src/views/BrandInsight/weiboPortraits/opt.js + */ +import * as echarts from "echarts"; +function createData(ds=[], colors=[]) { + let arr = []; + for(let i = 0; i < ds.length; i++) { + let ele = ds[i]; + if(ele.value*1 > 0) { + let obj = { value: ele.value*1, name: ele.key, itemStyle: { + color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ + //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 + //给第一个设置0,第四个设置1,就是垂直渐变 + offset: 0, + color: 'black' + }, { + offset: 1, + color: colors[i] + }]) + }}; + arr.push(obj) + } + } + return arr; +} +export default function createOpt(ds=[], colors=[]) { + const data = createData(ds,colors) + return { + series: [ + { + name: 'Access From0', + type: 'pie', + radius: ['65%', '80%'], + avoidLabelOverlap: false, + label: { + show: false, + position: 'center', + color: "#ffff", + lineHeight: 30 + }, + emphasis: { + label: { + show: true, + fontSize: '20', + color: "#ffff", + formatter: function (p) { + return `${p.data.name}\n${p.percent}%\n${p.data.value}` + } + } + }, + labelLine: { + show: false + }, + data: data + }, + { + name: 'Access From1', + type: 'pie', + radius: ['86%', '94%'], + avoidLabelOverlap: false, + label: { + show: false, + position: 'center' + }, + labelLine: { + show: false + }, + center: ['50%', '50%'],//边框位置 + data: data + } + ] + } +} diff --git a/src/views/ModelInsight/mlForumHotTopicDirection/v-ranking-fhtd/index.vue b/src/views/ModelInsight/mlForumHotTopicDirection/v-ranking-fhtd/index.vue deleted file mode 100644 index ef4b08b..0000000 --- a/src/views/ModelInsight/mlForumHotTopicDirection/v-ranking-fhtd/index.vue +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - diff --git a/src/views/ModelInsight/mlSpreadTOPmodels/index.vue b/src/views/ModelInsight/mlSpreadTOPmodels/index.vue index 5428cf8..2bfb9f7 100644 --- a/src/views/ModelInsight/mlSpreadTOPmodels/index.vue +++ b/src/views/ModelInsight/mlSpreadTOPmodels/index.vue @@ -1,27 +1,97 @@