소스 검색

删除log语句

baiyanting 1 년 전
부모
커밋
e616f5010e

+ 0 - 1
src/views/HealthControl/energyEfficAnalyse/powerHotAnalyse/components/current-scatter-chart.vue

@@ -338,7 +338,6 @@ export default {
       }
       myChart.off("brushSelected");
       myChart.on("brushSelected", (params) => {
-        console.log(params);
         that.$emit("getSelected", params.batch || []);
       });
       myChart.off("click");

+ 0 - 1
src/views/HealthControl/energyEfficAnalyse/powerHotAnalyse/index.vue

@@ -772,7 +772,6 @@ export default {
       if (batch?.length && this.dataSet) {
         let wy = batch[0].selected.findIndex((i) => i.seriesName == "无用点");
         let yy = batch[0].selected.findIndex((i) => i.seriesName == "有用点");
-        console.log(wy, yy);
         scatterls = wy != -1 ? batch[0].selected[wy].dataIndex : []; //无用点
         scatterhs = yy != -1 ? batch[0].selected[yy].dataIndex : []; //有用点