diff --git a/src/api/BrandInsight/index.js b/src/api/BrandInsight/index.js index 0d66f8b..5ae0798 100644 --- a/src/api/BrandInsight/index.js +++ b/src/api/BrandInsight/index.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-25 15:38:59 - * @LastEditTime: 2021-11-02 18:02:29 + * @LastEditTime: 2021-11-12 16:53:57 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/api/BrandInsight/index.js @@ -196,4 +196,17 @@ export function getWebsite(params) { 'content-type': 'application/x-www-form-urlencoded' } }) +} + +// 尾翼洞察-重点媒体 +export function getToPptTask(params) { + let obj = Object.assign({action: 'getToPptTask', sType: 'ToBrandPptV6'}, 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/forumCommunicationTrend/opt.js b/src/views/BrandInsight/forumCommunicationTrend/opt.js index db79132..00b20b2 100644 --- a/src/views/BrandInsight/forumCommunicationTrend/opt.js +++ b/src/views/BrandInsight/forumCommunicationTrend/opt.js @@ -1,12 +1,13 @@ /* * @Author: your name * @Date: 2021-10-12 16:40:53 - * @LastEditTime: 2021-10-26 14:15:19 + * @LastEditTime: 2021-11-12 17:25:19 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/views/BrandInsight/forumCommunicationTrend/opt.js */ import * as echarts from "echarts"; +import { bigNumberTransform } from "@/utils/gol/dataTool" export default function createOpt(dx = [], ds = []) { return { grid: { @@ -54,6 +55,12 @@ export default function createOpt(dx = [], ds = []) { color: "#FFF", }, }, + axisLabel: { + formatter: (value) => { + let str = bigNumberTransform(value); + return str; + } + }, splitLine: { lineStyle: { type: "dashed", // y轴分割线类型 diff --git a/src/views/BrandInsight/popularEvents/index.vue b/src/views/BrandInsight/popularEvents/index.vue index 1b6d51e..68ada9a 100644 --- a/src/views/BrandInsight/popularEvents/index.vue +++ b/src/views/BrandInsight/popularEvents/index.vue @@ -1,7 +1,7 @@