From ed20bb56a39a0884b76a4c68af75b4946f3a94bb Mon Sep 17 00:00:00 2001 From: "lily.zhang" Date: Fri, 19 Nov 2021 18:09:18 +0800 Subject: [PATCH] cxw-010203 --- src/lycomponents/iHeader/index.vue | 2 +- src/lycomponents/iHeaderBrand/index.vue | 2 +- src/utils/gol/singleColumnar.js | 13 ++++++------ src/views/EventComparison/CWIEC/index.vue | 4 ++-- src/views/EventComparison/cotwiEc/index.vue | 6 +++--- src/views/EventDEC/wbUserEDE/opt.js | 10 ++++----- .../mcChooseModel/index.vue | 21 +++++++++++++++++-- 7 files changed, 38 insertions(+), 20 deletions(-) diff --git a/src/lycomponents/iHeader/index.vue b/src/lycomponents/iHeader/index.vue index cd5e0fc..47998a0 100644 --- a/src/lycomponents/iHeader/index.vue +++ b/src/lycomponents/iHeader/index.vue @@ -79,7 +79,7 @@ export default { watch: { $route: { handler(val) { - if (val.path === "/eventDEC") { + if (val.path === "/eventDEC" || val.path === "/industryDataExport") { this.timeShow = false; } else { this.timeShow = true; diff --git a/src/lycomponents/iHeaderBrand/index.vue b/src/lycomponents/iHeaderBrand/index.vue index ea13221..2dd6d43 100644 --- a/src/lycomponents/iHeaderBrand/index.vue +++ b/src/lycomponents/iHeaderBrand/index.vue @@ -89,7 +89,7 @@ export default { watch: { $route: { handler(val) { - if (val.path === "/eventDEC" || val.path === "/eventComparison") { + if (val.path === "/eventDEC" || val.path === "/eventComparison" || val.path === "/industryDataExport") { this.timeShow = false; } else { this.timeShow = true; diff --git a/src/utils/gol/singleColumnar.js b/src/utils/gol/singleColumnar.js index 7a935e0..4c8b844 100644 --- a/src/utils/gol/singleColumnar.js +++ b/src/utils/gol/singleColumnar.js @@ -1,7 +1,7 @@ /* * @Author: your name * @Date: 2021-10-08 10:13:32 - * @LastEditTime: 2021-11-18 11:29:41 + * @LastEditTime: 2021-11-19 17:57:49 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/index.js @@ -9,7 +9,7 @@ import * as echarts from "echarts"; import { bigNumberTransform } from "@/utils/gol/dataTool" // import {doStr} from "./dataTool" -export function createSingleColumnar(dx=[], ds=[], color='#3373CC') { +export function createSingleColumnar(dx=[], ds=[], color='#3373CC', n = 4) { return { grid: { top: 20, @@ -41,10 +41,11 @@ export function createSingleColumnar(dx=[], ds=[], color='#3373CC') { type: "category", axisLabel :{ interval:0, - with: 1 / dx.length * 100 + '%', - overflow: 'truncate', - ellipsis: '...' + formatter: function (value) { + return (value.length > n ? (value.slice(0,n)+"...") : value ) + }, }, + triggerEvent: false, axisTick: { show: false, }, @@ -109,7 +110,7 @@ export function createSingleColumnar(dx=[], ds=[], color='#3373CC') { }, { offset: 1, - color: color, // 100% 处的颜色#3373CC + color: color ? color : '#3373CC', // 100% 处的颜色#3373CC }, ], false diff --git a/src/views/EventComparison/CWIEC/index.vue b/src/views/EventComparison/CWIEC/index.vue index 2ff54ac..9f0c964 100644 --- a/src/views/EventComparison/CWIEC/index.vue +++ b/src/views/EventComparison/CWIEC/index.vue @@ -1,7 +1,7 @@