From b450dcb3fc27f61a643a4127ac3462d79fdcb911 Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Fri, 12 Nov 2021 14:54:40 +0800 Subject: [PATCH] cxw-010203 --- src/api/ModelComparison/index.js | 50 ++++- src/utils/gol/dataTool.js | 23 ++- src/utils/gol/sideSingleColumn.js | 11 +- src/utils/gol/singleColumnar.js | 9 +- src/views/ModelComparison/BrandComparison.vue | 4 +- .../brandRearWingComparison/index.vue | 65 +++++-- .../brandRearWingComparison/opt.js | 143 ++++++--------- .../index.vue | 104 +++++++---- .../index.vue | 94 ++++++---- .../informationVolumeByChannel/index.vue | 57 +++++- .../informationVolumeByChannel/opt.js | 172 +++++++++++------- .../ModelComparison/tailTOPMedia/index.vue | 76 +++++--- 12 files changed, 535 insertions(+), 273 deletions(-) diff --git a/src/api/ModelComparison/index.js b/src/api/ModelComparison/index.js index c0cd064..ac5b714 100644 --- a/src/api/ModelComparison/index.js +++ b/src/api/ModelComparison/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-11-11 15:12:31 - * @LastEditTime: 2021-11-12 13:46:55 + * @LastEditTime: 2021-11-12 14:40:17 * @LastEditors: Please set LastEditors * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: /data-show/src/api/ModelComparison/index.js @@ -79,4 +79,52 @@ export function getAffectionsC(params) { 'content-type': 'application/x-www-form-urlencoded' } }) +} +// 论坛-论坛正面/负面话题对比 +export function getTopicPosAndTopicNeg0528C(params) { + let obj = Object.assign({action: 'getTopicPosAndTopicNeg0528C',sType: 'BbsBrand', iBBsType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 尾翼-尾翼信息趋势 +export function getCountTime0528C1(params) { + let obj = Object.assign({action: 'getCountTime0528C',sType: 'BrandWeiYi'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 尾翼-尾翼信息趋势 +export function getSourcetypeC(params) { + let obj = Object.assign({action: 'getSourcetypeC',sType: 'BrandWeiYi'}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} +// 尾翼-top媒体 +export function getSourceTopCount0528C(params) { + let obj = Object.assign({action: 'getSourceTopCount0528C',sType: 'BrandWeiYi',iSize: 10}, 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/utils/gol/dataTool.js b/src/utils/gol/dataTool.js index a645e74..eaf7050 100644 --- a/src/utils/gol/dataTool.js +++ b/src/utils/gol/dataTool.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-29 13:29:26 - * @LastEditTime: 2021-11-11 10:45:13 + * @LastEditTime: 2021-11-12 14:50:47 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/dataTool.js @@ -76,4 +76,25 @@ export function comparePig(property) { let value2 = b[property]; return value2 - value1; } +} + +// 处理超出字后面... +export function doStr(str, n) { + let totalCount = 0; + let txt = ""; + for (var i = 0; i < str.length; i++) { + let c = str.charCodeAt(i); + if ((c >= 0x0001 && c <= 0x007e) || (0xff60 <= c && c <= 0xff9f)) { + totalCount++; + } else { + totalCount += 2; + } + if (totalCount <= n) { + txt += str[i]; + } else { + txt += '...'; + return txt + } + } + return txt; } \ No newline at end of file diff --git a/src/utils/gol/sideSingleColumn.js b/src/utils/gol/sideSingleColumn.js index 7a9b832..a6ab9e4 100644 --- a/src/utils/gol/sideSingleColumn.js +++ b/src/utils/gol/sideSingleColumn.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-15 17:52:59 - * @LastEditTime: 2021-10-29 15:58:03 + * @LastEditTime: 2021-11-12 14:09:59 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/sideSingleColumn.js @@ -17,6 +17,7 @@ * @FilePath: /data-show/src/views/Index/tailInsight/opt.js */ import * as echarts from "echarts"; +import { bigNumberTransform } from "@/utils/gol/dataTool" export function createSideSingleColumn(dx=[], ds=[], color='#51bc91') { return { grid: { @@ -44,6 +45,12 @@ export function createSideSingleColumn(dx=[], ds=[], color='#51bc91') { color: "#fff", }, }, + axisLabel: { + formatter: (value) => { + let str = bigNumberTransform(value); + return str; + } + }, splitLine: { lineStyle: { type: "dashed", // y轴分割线类型 @@ -69,7 +76,7 @@ export function createSideSingleColumn(dx=[], ds=[], color='#51bc91') { { name: '2011', type: 'bar', - barWidth: 24, + barWidth: 16, data: ds, color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{ offset: 0, diff --git a/src/utils/gol/singleColumnar.js b/src/utils/gol/singleColumnar.js index 7c7ad3a..5863d1f 100644 --- a/src/utils/gol/singleColumnar.js +++ b/src/utils/gol/singleColumnar.js @@ -1,13 +1,14 @@ /* * @Author: your name * @Date: 2021-10-08 10:13:32 - * @LastEditTime: 2021-11-01 19:30:30 + * @LastEditTime: 2021-11-12 14:53:44 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/index.js */ import * as echarts from "echarts"; import { bigNumberTransform } from "@/utils/gol/dataTool" +import {doStr} from "./dataTool" export function createSingleColumnar(dx=[], ds=[], color='#3373CC') { return { grid: { @@ -39,7 +40,11 @@ export function createSingleColumnar(dx=[], ds=[], color='#3373CC') { xAxis: { type: "category", axisLabel :{ - interval:0 + interval:0, + formatter: (value) => { + let str = doStr(value, 4); + return str; + } }, axisTick: { show: false, diff --git a/src/views/ModelComparison/BrandComparison.vue b/src/views/ModelComparison/BrandComparison.vue index 5e1ba90..f0cc141 100644 --- a/src/views/ModelComparison/BrandComparison.vue +++ b/src/views/ModelComparison/BrandComparison.vue @@ -1,7 +1,7 @@