diff --git a/src/styles/antd.less b/src/styles/antd.less index 6655a6d..62971df 100644 --- a/src/styles/antd.less +++ b/src/styles/antd.less @@ -126,6 +126,10 @@ .ant-checkbox-wrapper { color: #fff !important; } +.ant-checkbox-disabled .ant-checkbox-inner { + border: 1px solid #3373CC !important; + background: #010e1f !important; +} .ant-checkbox-inner { border: 1px solid #3373CC !important; background: #010e1f !important; @@ -227,3 +231,9 @@ .ant-table-tbody > tr > td { padding: 0.75rem !important; } +.ant-checkbox-group { + color: #fff !important; +} +.ant-checkbox-disabled + span { + color: #fff !important; +} diff --git a/src/utils/gol/sideSingleColumn.js b/src/utils/gol/sideSingleColumn.js index b4e0dd5..7a9b832 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-26 15:29:25 + * @LastEditTime: 2021-10-29 15:58:03 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/sideSingleColumn.js @@ -20,10 +20,10 @@ import * as echarts from "echarts"; export function createSideSingleColumn(dx=[], ds=[], color='#51bc91') { return { grid: { - left: 16, - right: 16, - bottom: 16, - top: 0, + left: 10, + right: '5%', + bottom: 10, + top: 5, containLabel: true }, tooltip: { diff --git a/src/utils/gol/singleColumnar.js b/src/utils/gol/singleColumnar.js index d74dc86..369badd 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-10-26 09:30:30 + * @LastEditTime: 2021-10-29 15:55:16 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/index.js @@ -10,10 +10,10 @@ import * as echarts from "echarts"; export function createSingleColumnar(dx=[], ds=[], color='#3373CC') { return { grid: { - top: "16px", - left: "16px", - right: "28px", - bottom: "16px", + top: 16, + left: 10, + right: 10, + bottom: 10, containLabel: true, }, tooltip: { diff --git a/src/views/Index/salesRank/opt.js b/src/views/Index/salesRank/opt.js index dd6ed66..e08dbac 100644 --- a/src/views/Index/salesRank/opt.js +++ b/src/views/Index/salesRank/opt.js @@ -2,7 +2,7 @@ /* * @Author: your name * @Date: 2021-10-08 19:24:08 - * @LastEditTime: 2021-10-29 13:46:01 + * @LastEditTime: 2021-10-29 15:54:46 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/views/Index/salesRank/opt.js @@ -12,7 +12,7 @@ import { bigNumberTransform } from "@/utils/gol/dataTool"; export default function createOpt(dx, ds) { return { grid: { - top: 10, + top: 16, left: 10, right: 10, bottom: 10, diff --git a/src/views/Index/tailInsight/opt.js b/src/views/Index/tailInsight/opt.js index d673b8b..5a51cf5 100644 --- a/src/views/Index/tailInsight/opt.js +++ b/src/views/Index/tailInsight/opt.js @@ -3,7 +3,7 @@ /* * @Author: your name * @Date: 2021-10-09 12:38:34 - * @LastEditTime: 2021-10-29 14:33:26 + * @LastEditTime: 2021-10-29 15:56:07 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/src/views/Index/tailInsight/opt.js @@ -16,7 +16,7 @@ export default function createOpt(dy=[],ds=[]) { left: 10, right: '5%', bottom: 10, - top: 16, + top: 5, containLabel: true }, tooltip: { diff --git a/src/views/IndustryDataExport/index.vue b/src/views/IndustryDataExport/index.vue index 0c29da3..21b29e0 100644 --- a/src/views/IndustryDataExport/index.vue +++ b/src/views/IndustryDataExport/index.vue @@ -1,7 +1,7 @@