Files
emsfront/src/views/ems/dzjk/sbjk/ssyx/DcpjwdChart.vue

100 lines
2.2 KiB
Vue
Raw Normal View History

2025-06-18 01:01:17 +08:00
<template>
<el-card shadow="always" class="common-card-container common-card-container-body-no-padding">
<div slot="header">
<span class="card-title">电池平均温度</span>
</div>
<div style="height: 360px" id="dcpjwdChart"/>
</el-card>
</template>
<style scoped lang="scss"></style>
<script>
import * as echarts from 'echarts'
import resize from '@/mixins/ems/resize'
import {formatDate} from "@/filters/ems";
import {batteryAveTemp} from '@/api/ems/dzjk'
2025-06-18 01:01:17 +08:00
export default {
mixins: [resize],
data() {
return {
chart: null
}
},
mounted() {
this.chart = echarts.init(document.querySelector('#dcpjwdChart'))
2025-06-18 01:01:17 +08:00
},
beforeDestroy() {
if (!this.chart) {
return
}
this.chart.dispose()
this.chart = null
},
methods: {
init(siteId){
this.chart.showLoading()
const x = []
const data1 =[],data2 =[]
batteryAveTemp(siteId).then(response => {
const source = response?.data?.batteryAveTempList || []
source.forEach(item=>{
x.push(formatDate(item.createDate,false,true))
data1.push(item.batteryTemp)
})
this.setOption(x,data1,data2)
}).finally(()=>{
this.chart.hideLoading()
})
2025-06-18 01:01:17 +08:00
},
setOption(x,data) {
2025-06-18 01:01:17 +08:00
this.chart.setOption({
color:['#3C81FF'],
// legend: {
// left: 'center',
// bottom: '10',
// },
2025-06-18 01:01:17 +08:00
tooltip: {
trigger: 'axis',
axisPointer: { // 坐标轴指示器,坐标轴触发有效
type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
}
},
grid: {
2025-08-11 21:50:38 +08:00
containLabel: true
},
2025-06-18 01:01:17 +08:00
textStyle:{
color:"#333333",
},
xAxis: {type:'category',data:x},
2025-06-18 01:01:17 +08:00
yAxis: {
type: 'value',
},
dataZoom: [
{
type: 'inside',
start: 0,
2025-07-11 17:24:45 +08:00
end: 100
},
{
start: 0,
2025-07-11 17:24:45 +08:00
end: 100
}
],
2025-06-18 01:01:17 +08:00
series: [
{
name:'电池平均温度',
data: data,
2025-06-18 01:01:17 +08:00
type: 'line',
areaStyle: {
color:'#3C81FF'
},
2025-06-18 01:01:17 +08:00
}]
})
}
}
}
</script>