From d1a606963672990eee0b4db6834fa0c3e74fa946 Mon Sep 17 00:00:00 2001 From: guoshipeng <3194674006@qq.com> Date: Thu, 06 Jul 2023 09:35:24 +0800 Subject: [PATCH] 上传组件 --- src/views/charts/index.vue | 33 ++++++++++++++------------------- 1 files changed, 14 insertions(+), 19 deletions(-) diff --git a/src/views/charts/index.vue b/src/views/charts/index.vue index 6ccbfaa..73b80cd 100644 --- a/src/views/charts/index.vue +++ b/src/views/charts/index.vue @@ -18,8 +18,8 @@ style="margin-left: 20px" > <el-option - v-for="item in newSensor" - :key="item.value" + v-for="(item, index) in newSensor" + :key="index" :label="item.label" :value="item.value" /> @@ -168,7 +168,6 @@ } // ������������������������������������������ this.getSensor() - console.log(this.newMac1) }, // ������dataType��������������� select1(nv, ov) { @@ -195,8 +194,7 @@ one === 'a34002' || one === 'a21004' || one === 'a21026' || - one === 'a05024' || - one === 'a21001' + one === 'a05024' ) { this.selectyz = '(������:ug/m��)' } else if ( @@ -224,7 +222,13 @@ this.selectyz = '(������:pcs/0.1L)' } else if (one === 'a00e13') { this.selectyz = '(������:db)' - } else if (one === 'a21028') { + } else if ( + one === 'a21028' || + one === 'a25002' || + one === 'a21001' || + one === 'a25005' || + one === 'a25003' + ) { this.selectyz = '(������:ppm)' } }, @@ -248,6 +252,7 @@ methods: { // ������������ selectData() { + console.log(this.newData) var newLineChartData = { series: [], xAxis: [], @@ -267,13 +272,11 @@ }) .then((res) => { // console.log('������������������������������') - console.log(res) const data = res.data let lockLength = 0 for (let i = 0; i < data.length; i++) { for (let j = 0; j < data[i].deviceData.length; j++) { - console.log(data[i].deviceData); - if (res.data[0].deviceData.length == 1) { + if (res.data[0].deviceData.length === 1) { if (lockLength < data[i].deviceData.length) { newLineChartData.series.push({ data: [], @@ -285,32 +288,24 @@ }, }) } - } else if (lockLength < data[i].deviceData.length) { + } else { newLineChartData.series.push({ data: [], name: '', type: 'line', - label: { - show: false, - position: 'top', - }, }) } newLineChartData.series[j].name = data[i].deviceData[j].name newLineChartData.title.push(data[i].deviceData[j].name) - lockLength++ newLineChartData.series[j].data.push( data[i].deviceData[j].sensorValue ) - - - } newLineChartData.xAxis.push(data[i].time) } // newLineChartData.title = this.value this.lineChartData = newLineChartData - // console.log(newLineChartData, 'newLineChartData') + console.log(lineChartData, 'newLineChartData') }) .catch((err) => { console.log(err) -- Gitblit v1.8.0