|
@@ -143,18 +143,16 @@ const handleSelectOptions = (selectOptionList) => {
|
|
}
|
|
}
|
|
|
|
|
|
const initWaterEchart = async () => {
|
|
const initWaterEchart = async () => {
|
|
-
|
|
|
|
const tempArr = [];
|
|
const tempArr = [];
|
|
-
|
|
|
|
const tempResult = selectValue.value.map(key => {
|
|
const tempResult = selectValue.value.map(key => {
|
|
|
|
+ if (key == 12 || key == 13) return null;
|
|
const data = echartDataSource.value[key] || [];
|
|
const data = echartDataSource.value[key] || [];
|
|
-
|
|
|
|
tempArr.push(data);
|
|
tempArr.push(data);
|
|
return ({
|
|
return ({
|
|
name: selectEnum.get(key),
|
|
name: selectEnum.get(key),
|
|
data
|
|
data
|
|
});
|
|
});
|
|
- });
|
|
|
|
|
|
+ }).filter(Boolean);
|
|
|
|
|
|
const xAxis = tempArr.flat(Infinity).reduce((acc, curr) => {
|
|
const xAxis = tempArr.flat(Infinity).reduce((acc, curr) => {
|
|
if (!acc.some(item => item.time === curr.time)) {
|
|
if (!acc.some(item => item.time === curr.time)) {
|
|
@@ -422,7 +420,7 @@ const initWaterEchartData = async () => {
|
|
const timeBegin = tBegin ? dayjs(tBegin).format('YYYY-MM-DD') : null;
|
|
const timeBegin = tBegin ? dayjs(tBegin).format('YYYY-MM-DD') : null;
|
|
const timeEnd = tEnd ? dayjs(tEnd).format('YYYY-MM-DD') : null;
|
|
const timeEnd = tEnd ? dayjs(tEnd).format('YYYY-MM-DD') : null;
|
|
const { data } = await controlApi.getAllEchartData({ timeBegin, timeEnd });
|
|
const { data } = await controlApi.getAllEchartData({ timeBegin, timeEnd });
|
|
-
|
|
|
|
|
|
+
|
|
show.value = false;
|
|
show.value = false;
|
|
echartDataSource.value = data;
|
|
echartDataSource.value = data;
|
|
|
|
|
|
@@ -440,6 +438,7 @@ const intiCoefficientEchartData = async () => {
|
|
time: dayjs(item.createTime).format('YYYY/MM/DD HH'),
|
|
time: dayjs(item.createTime).format('YYYY/MM/DD HH'),
|
|
val: item[selectValue.value]
|
|
val: item[selectValue.value]
|
|
}));
|
|
}));
|
|
|
|
+
|
|
show.value = false;
|
|
show.value = false;
|
|
echart.setOption(getEchartOptions(d), true);
|
|
echart.setOption(getEchartOptions(d), true);
|
|
}
|
|
}
|
|
@@ -486,7 +485,10 @@ onMounted(async () => {
|
|
selectOptions.value = echartOptions;
|
|
selectOptions.value = echartOptions;
|
|
|
|
|
|
echart = echarts.init(document.querySelector('#echartRef'), 'light');
|
|
echart = echarts.init(document.querySelector('#echartRef'), 'light');
|
|
- await initWaterEchartData();
|
|
|
|
|
|
+
|
|
|
|
+ setTimeout(async () => {
|
|
|
|
+ await initWaterEchartData();
|
|
|
|
+ }, 1000)
|
|
|
|
|
|
window.addEventListener("resize", windowResize);
|
|
window.addEventListener("resize", windowResize);
|
|
|
|
|