update -测温曲线优化
parent
2104a58580
commit
86e4b721f5
@ -0,0 +1,116 @@
|
|||||||
|
<template>
|
||||||
|
<div :class="className" :style="{height:height,width:width}"/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import * as echarts from 'echarts'
|
||||||
|
|
||||||
|
require('echarts/theme/macarons') // echarts theme
|
||||||
|
import resize from '@/views/dashboard/mixins/resize'
|
||||||
|
import { getTestTemp } from '@/api/report/temperatureHistory'
|
||||||
|
import { parseTime } from '@/utils/ruoyi'
|
||||||
|
|
||||||
|
|
||||||
|
const animationDuration = 3000
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [resize],
|
||||||
|
props: {
|
||||||
|
className: {
|
||||||
|
type: String,
|
||||||
|
default: 'chart'
|
||||||
|
},
|
||||||
|
width: {
|
||||||
|
type: String,
|
||||||
|
default: '100%'
|
||||||
|
},
|
||||||
|
height: {
|
||||||
|
type: String,
|
||||||
|
default: '700px'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
testTime: '',
|
||||||
|
testTempMes: [],
|
||||||
|
chart: null,
|
||||||
|
queryParams: {
|
||||||
|
objId: null
|
||||||
|
},
|
||||||
|
chartOptions: {
|
||||||
|
xAxis: {
|
||||||
|
data: [] // 这里将存储后台传入的 x 轴数据
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
type: 'value'
|
||||||
|
},
|
||||||
|
series: [{
|
||||||
|
data: [], // 这里将存储后台传入的 y 轴数据
|
||||||
|
type: 'line'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
beforeDestroy() {
|
||||||
|
if (!this.chart) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.chart.dispose()
|
||||||
|
this.chart = null
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.queryParams.objId = this.$route.params && this.$route.params.objId
|
||||||
|
this.openDifference()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 详情表
|
||||||
|
openDifference() {
|
||||||
|
// this.form.cpno = row.cpno;
|
||||||
|
getTestTemp(this.queryParams).then(response => {
|
||||||
|
this.reportDetailList = response.data.tempList
|
||||||
|
this.open = true
|
||||||
|
this.title = '测温报表曲线'
|
||||||
|
this.testTime = response.data.tempList[0]
|
||||||
|
this.initChart()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
},
|
||||||
|
initChart() {
|
||||||
|
this.chart = echarts.init(this.$el, 'macarons')
|
||||||
|
this.xdata = this.testTime
|
||||||
|
var series = []
|
||||||
|
for (var i = 1; i < this.reportDetailList.length; i++) {
|
||||||
|
series.push({
|
||||||
|
name: '温度' + [i],
|
||||||
|
type: 'line',
|
||||||
|
data: this.reportDetailList[i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
this.chart.setOption({
|
||||||
|
xAxis: {
|
||||||
|
data: this.testTime,
|
||||||
|
axisLine: {
|
||||||
|
// show:true,
|
||||||
|
onZero: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
data: ['温度1', '温度2', '温度3', '温度4', '温度5', '温度6', '温度7', '温度8', '温度9', '温度10', '温度11', '室温']
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
scale: true,
|
||||||
|
type: 'value'
|
||||||
|
},
|
||||||
|
series: series
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
// this.initChart()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in New Issue