|
@@ -10,12 +10,24 @@
|
|
|
import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
|
|
|
import EchartsUtil from '/@/utils/echartsUtil';
|
|
|
import { merge } from 'lodash-es';
|
|
|
-
|
|
|
+ import { columns } from '/@/views/monitor/datalog/datalog.data';
|
|
|
+ type ChartColumn = {
|
|
|
+ legend: string;
|
|
|
+ seriesName: string;
|
|
|
+ ymax: number;
|
|
|
+ yname: string;
|
|
|
+ linetype: string;
|
|
|
+ yaxispos: string;
|
|
|
+ color: string;
|
|
|
+ sort: number;
|
|
|
+ xRotate: number;
|
|
|
+ dataIndex: string;
|
|
|
+ };
|
|
|
export default defineComponent({
|
|
|
name: 'BarAndLine',
|
|
|
props: {
|
|
|
chartsColumns: {
|
|
|
- type: Array,
|
|
|
+ type: Array as PropType<ChartColumn[]>,
|
|
|
default: () => [],
|
|
|
},
|
|
|
chartsColumnsType: {
|
|
@@ -52,8 +64,8 @@
|
|
|
const chartRef = ref<HTMLDivElement | null>(null);
|
|
|
const { setOptions, echarts } = useECharts(chartRef as Ref<HTMLDivElement>);
|
|
|
const chartData = props.chartsColumnsType ? getTableHeaderColumns(props.chartsColumnsType) : [];
|
|
|
- let chartsColumns = props.chartsColumns.length > 0 ? props.chartsColumns : chartData;
|
|
|
-
|
|
|
+ let chartsColumns = (props.chartsColumns.length > 0 ? props.chartsColumns : chartData) as ChartColumn[];
|
|
|
+ // let groupedByColumns = {};
|
|
|
const option = reactive({
|
|
|
name: '',
|
|
|
color: ['#7B68EE', '#0000CD', '#6495ED', '#00BFFF', '#AFEEEE', '#008080', '#00FA9A', '#2E8B57', '#FAFAD2', '#DAA520'],
|
|
@@ -81,7 +93,6 @@
|
|
|
yAxis: null,
|
|
|
series: null,
|
|
|
});
|
|
|
-
|
|
|
let optionUtil;
|
|
|
|
|
|
watchEffect(() => {
|
|
@@ -97,6 +108,17 @@
|
|
|
emit('refresh');
|
|
|
});
|
|
|
|
|
|
+ // watch(yMax, (newVal) => {
|
|
|
+ // // y轴最大值变化,需要重新更新
|
|
|
+ // chartsColumns = chartsColumns.map((column: ChartColumn) => {
|
|
|
+ // column['ymax'] = newVal;
|
|
|
+ // });
|
|
|
+ // optionUtil.initChartOption(props.chartsType, chartsColumns);
|
|
|
+ // spinning.value = false;
|
|
|
+ // initCharts(true);
|
|
|
+ // emit('refresh');
|
|
|
+ // });
|
|
|
+
|
|
|
function initChartsOption() {
|
|
|
// debugger;
|
|
|
optionUtil = new EchartsUtil(merge(option, props.option));
|
|
@@ -105,19 +127,59 @@
|
|
|
initChartsOption();
|
|
|
|
|
|
function initCharts(isRefresh = false) {
|
|
|
- // debugger;
|
|
|
+ debugger;
|
|
|
+ if (props.dataSource.length < 1) return;
|
|
|
//轴数据
|
|
|
+ let isFresh = false;
|
|
|
if (option.series && option.series.length === chartsColumns.length) {
|
|
|
let xAxisData = props.dataSource.map((item) => item[props.xAxisPropType]);
|
|
|
- [...chartsColumns].forEach((propType: any, index) => {
|
|
|
+ chartsColumns = [...chartsColumns].filter((propType: any, index) => {
|
|
|
+ if (!propType) return;
|
|
|
if (props.chartsType == 'listMonitor') {
|
|
|
option.series[index].type = 'bar';
|
|
|
}
|
|
|
- option.series[index].data = props.dataSource.map((item) => item[propType.dataIndex] || 0);
|
|
|
+ option.series[index].data = props.dataSource.map((item) => Number(item[propType.dataIndex]) || 0);
|
|
|
+ console.log('nnn', option.series[index].data);
|
|
|
+ // 这里动态计算echarts y轴最大值
|
|
|
+ const max = Math.max(...option.series[index].data);
|
|
|
+ const digitCount = max.toFixed(0).length;
|
|
|
+ let yMax = 0;
|
|
|
+ if (digitCount < 2) {
|
|
|
+ yMax = 10;
|
|
|
+ } else if (digitCount < 3) {
|
|
|
+ const n = Number((Number(max.toFixed(0)) / 10).toFixed(0));
|
|
|
+ yMax = (n + 1) * 10;
|
|
|
+ } else if (digitCount < 4) {
|
|
|
+ const n = Number((Number(max.toFixed(0)) / 100).toFixed(0));
|
|
|
+ yMax = (n + 1) * 100;
|
|
|
+ } else if (digitCount < 5) {
|
|
|
+ const n = Number((Number(max.toFixed(0)) / 1000).toFixed(0));
|
|
|
+ yMax = (n + 1) * 1000;
|
|
|
+ } else if (digitCount < 6) {
|
|
|
+ const n = Number((Number(max.toFixed(0)) / 10000).toFixed(0));
|
|
|
+ yMax = (n + 1) * 10000;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (yMax != 0 && yMax !== propType?.ymax) {
|
|
|
+ propType.ymax = yMax;
|
|
|
+ isFresh = true;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
});
|
|
|
option.xAxis[0].data = xAxisData;
|
|
|
- // console.log('echarts监测列表数据', option.xAxis[0].data);
|
|
|
- setOptions(option, isRefresh);
|
|
|
+ if (isFresh) {
|
|
|
+ spinning.value = true;
|
|
|
+ optionUtil.initChartOption(props.chartsType, chartsColumns);
|
|
|
+ spinning.value = false;
|
|
|
+ initCharts(true);
|
|
|
+ emit('refresh');
|
|
|
+ nextTick(() => {
|
|
|
+ setOptions(option, true);
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ // console.log('echarts监测列表数据', option.xAxis[0].data);
|
|
|
+ setOptions(option, isRefresh);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
setTimeout(() => {
|