From 322a97007e3a8261e2fee7b5894eddc9a4a4556e Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Tue, 2 Nov 2021 18:24:30 +0800 Subject: [PATCH] cxw-010203 --- src/api/BrandInsight/index.js | 6 +-- src/views/BrandInsight/brandTop/opt.js | 9 +++- src/views/EventInsight/hotEventPO/index.vue | 8 ++-- .../EventInsight/industryTOPHE/index.vue | 41 +++---------------- src/views/Index/index.vue | 4 +- 5 files changed, 24 insertions(+), 44 deletions(-) diff --git a/src/api/BrandInsight/index.js b/src/api/BrandInsight/index.js index a790303..0d66f8b 100644 --- a/src/api/BrandInsight/index.js +++ b/src/api/BrandInsight/index.js @@ -1,16 +1,16 @@ /* * @Author: your name * @Date: 2021-10-25 15:38:59 - * @LastEditTime: 2021-10-28 13:15:14 + * @LastEditTime: 2021-11-02 18:02:29 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/api/BrandInsight/index.js */ import httpService from "@/request" -// 获取顶部选择项 无自选 +// 品牌车型top export function getCartypeTop10(params) { - let obj = Object.assign({action: 'getCartypeTop10', sType: 'BrandOverview', iBBsType: 1}, params) + let obj = Object.assign({action: 'getCartypeTop10', sType: 'BrandOverview'}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', diff --git a/src/views/BrandInsight/brandTop/opt.js b/src/views/BrandInsight/brandTop/opt.js index 4c2eda6..245fdc6 100644 --- a/src/views/BrandInsight/brandTop/opt.js +++ b/src/views/BrandInsight/brandTop/opt.js @@ -1,12 +1,13 @@ /* * @Author: your name * @Date: 2021-10-12 09:12:13 - * @LastEditTime: 2021-10-12 09:17:55 + * @LastEditTime: 2021-11-02 18:03:08 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/views/BrandInsight/brandTop/opt.js */ import * as echarts from "echarts"; +import { bigNumberTransform } from "@/utils/gol/dataTool" export default function createOpt(dx,ds) { return { grid: { @@ -56,6 +57,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/EventInsight/hotEventPO/index.vue b/src/views/EventInsight/hotEventPO/index.vue index b229a5e..a3bb040 100644 --- a/src/views/EventInsight/hotEventPO/index.vue +++ b/src/views/EventInsight/hotEventPO/index.vue @@ -1,13 +1,13 @@