update -测温曲线优化

master
yinq 4 months ago
parent b61a582437
commit 834cba4285

@ -12,14 +12,13 @@
<script> <script>
import {getTestTemp} from '@/api/report/temperatureHistory' import { getTestTemp } from '@/api/report/temperatureHistory'
import Chart from "@//components/board/Chart"; import Chart from '@//components/board/Chart'
const animationDuration = 3000 const animationDuration = 3000
export default { export default {
components: {Chart}, components: { Chart },
props: { props: {
className: { className: {
type: String, type: String,
@ -78,17 +77,17 @@ export default {
data: response.data.tempList[0], data: response.data.tempList[0],
axisLine: { axisLine: {
// show:true, // show:true,
onZero: false, onZero: false
}, }
}, },
tooltip: { tooltip: {
trigger: 'axis', trigger: 'axis',
axisPointer: { axisPointer: {
type: 'cross', type: 'cross',
crossStyle: { crossStyle: {
color: '#999', color: '#999'
}, }
}, }
}, },
legend: { legend: {
// data: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', ''] // data: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '']
@ -106,7 +105,7 @@ export default {
// min:0, // min:0,
type: 'value', type: 'value',
axisLabel: { axisLabel: {
formatter: '{value}V' formatter: '{value}W'
} }
} }
], ],
@ -115,33 +114,30 @@ export default {
return return
} }
return { return {
name: '温度' + [i], name: '温度' + [i] + '(℃)',
type: 'line', type: 'line',
data: this.reportDetailList[i], data: this.reportDetailList[i]
label: { // label: {
show: true, // show: true,
position: 'top' // position: 'top'
} // }
} }
}).concat(response.data.vList.map((e, i) => { }).concat(response.data.vList.map((e, i) => {
if (i === 0) {
return
}
return { return {
name: '电压' + [i], name: '功率(W)',
yAxisIndex:1, yAxisIndex: 1,
type: 'line', type: 'line',
data: this.reportDetailList[i], data: e
label: { // label: {
show: true, // show: true,
position: 'top' // position: 'top'
} // }
} }
})) }))
}) })
} }
) )
}, }
}, },
mounted() { mounted() {
this.$nextTick(() => { this.$nextTick(() => {

Loading…
Cancel
Save