feat(ems/dashboard): 重构能源管理仪表盘界面与功能

- 移除统计卡片,新增能源流向桑基图
- 优化能源类型二维表展示
- 添加产线能源时序分析图表
- 调整能源消耗趋势和能源产线占比图表
- 增加能源类型和产线筛选功能
This commit is contained in:
2026-05-07 11:07:49 +08:00
parent d71b1c4959
commit 89a079e49f

View File

@@ -4,14 +4,8 @@
<div class="filter-panel"> <div class="filter-panel">
<el-form :inline="true" :model="queryParams" class="filter-form"> <el-form :inline="true" :model="queryParams" class="filter-form">
<el-form-item label="时间范围"> <el-form-item label="时间范围">
<time-range-picker <time-range-picker v-model="timeRangeParams" start-key="recordStartDate" end-key="recordEndDate"
v-model="timeRangeParams" :default-start-time="defaultStartTime" :default-end-time="defaultEndTime" @quick-select="loadData" />
start-key="recordStartDate"
end-key="recordEndDate"
:default-start-time="defaultStartTime"
:default-end-time="defaultEndTime"
@quick-select="loadData"
/>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-refresh" @click="loadData">刷新</el-button> <el-button type="primary" icon="el-icon-refresh" @click="loadData">刷新</el-button>
@@ -19,26 +13,58 @@
</el-form> </el-form>
</div> </div>
<!-- 统计卡片 --> <!-- 图表区域 -->
<div class="stat-cards"> <div class="charts-section">
<!-- 产线能源类型二维表 -->
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="6" v-for="(stat, index) in statistics" :key="index"> <el-col :span="24">
<div class="stat-card" :class="'stat-' + index"> <div class="chart-card">
<div class="stat-icon"> <div class="chart-header">
<i :class="stat.icon"></i> <span class="chart-title">产线能源类型二维表</span>
</div> </div>
<div class="stat-content"> <div class="table-container">
<div class="stat-value">{{ stat.value }}</div> <el-table :data="tableData" border style="width: 100%" :summary-method="getSummaries" show-summary>
<div class="stat-label">{{ stat.label }}</div> <el-table-column prop="lineName" label="产线"></el-table-column>
<el-table-column v-for="type in energyTypeList" :key="type.energyTypeId"
:prop="'type_' + type.energyTypeId" :label="type.name">
<template slot-scope="scope">
{{ scope.row['type_' + type.energyTypeId] ? Number(scope.row['type_' +
type.energyTypeId]).toFixed(2)
: 0 }}
</template>
</el-table-column>
</el-table>
</div> </div>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</div>
<!-- 图表区域 --> <el-row :gutter="20" style="margin-top: 20px">
<div class="charts-section"> <!-- 产线能源时序分析 -->
<el-row :gutter="20"> <el-col :span="24">
<div class="chart-card">
<div class="chart-header" style="flex-wrap: wrap; gap: 12px;">
<span class="chart-title">产线能源时序分析</span>
<div style="display: flex; gap: 12px; flex-wrap: wrap;">
<el-select v-model="selectedLineAnalysisEnergyTypeId" placeholder="请选择能源类型"
@change="updateLineEnergyTrendChart" style="width: 150px;">
<el-option v-for="item in energyTypeList" :key="item.energyTypeId" :label="item.name"
:value="item.energyTypeId">
</el-option>
</el-select>
<el-select v-model="selectedLines" multiple placeholder="请选择产线" @change="updateLineEnergyTrendChart"
style="width: 200px;">
<el-option v-for="line in productionLines" :key="line.value" :label="line.label" :value="line.value">
</el-option>
</el-select>
</div>
</div>
<div ref="lineEnergyTrendChart" class="chart-container"></div>
</div>
</el-col>
</el-row>
<el-row :gutter="20" style="margin-top: 20px">
<!-- 能源消耗趋势图 --> <!-- 能源消耗趋势图 -->
<el-col :span="16"> <el-col :span="16">
<div class="chart-card"> <div class="chart-card">
@@ -49,62 +75,39 @@
</div> </div>
</el-col> </el-col>
<!-- 能源类型占比 --> <!-- 能源产线占比 -->
<el-col :span="8"> <el-col :span="8">
<div class="chart-card"> <div class="chart-card">
<div class="chart-header"> <div class="chart-header">
<span class="chart-title">能源类型占比</span> <span class="chart-title">能源产线占比</span>
<el-select v-model="selectedEnergyTypeId" placeholder="请选择能源" @change="updateEnergyTypeChart"
style="width: 150px;">
<el-option v-for="item in energyTypeList" :key="item.energyTypeId" :label="item.name"
:value="item.energyTypeId">
</el-option>
</el-select>
</div> </div>
<div ref="energyTypeChart" class="chart-container"></div> <div ref="energyTypeChart" class="chart-container"></div>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20" style="margin-top: 20px"> <!-- 能源流向桑基图 -->
<!-- 产线能耗对比 --> <el-row :gutter="20" style="margin-top: 20px;">
<el-col :span="12">
<div class="chart-card">
<div class="chart-header">
<span class="chart-title">产线能耗对比</span>
</div>
<div ref="productionLineChart" class="chart-container"></div>
</div>
</el-col>
<!-- 设备能耗排行 -->
<el-col :span="12">
<div class="chart-card">
<div class="chart-header">
<span class="chart-title">设备能耗排行 TOP 10</span>
</div>
<div ref="deviceRankingChart" class="chart-container"></div>
</div>
</el-col>
</el-row>
<!-- 产线能源类型二维表 -->
<el-row :gutter="20" style="margin-top: 20px">
<el-col :span="24"> <el-col :span="24">
<div class="chart-card"> <div class="chart-card">
<div class="chart-header"> <div class="chart-header" style="flex-wrap: wrap; gap: 12px;">
<span class="chart-title">产线能源类型二维表</span> <span class="chart-title">能源流向</span>
</div> <el-select v-model="selectedSankeyEnergyTypeId" placeholder="请选择能源类型" @change="updateSankeyChart"
<div class="table-container"> style="width: 200px;">
<el-table :data="tableData" border style="width: 100%" :summary-method="getSummaries" show-summary> <el-option v-for="type in getValidSankeyEnergyTypes()" :key="type.energyTypeId" :label="type.name"
<el-table-column prop="lineName" label="产线"></el-table-column> :value="type.energyTypeId">
<el-table-column v-for="type in energyTypeList" :key="type.energyTypeId" </el-option>
:prop="'type_' + type.energyTypeId" :label="type.name"> </el-select>
<template slot-scope="scope"> <el-alert v-if="getValidSankeyEnergyTypes().length === 0" title="暂无可用能源类型(需要能源类型有且仅有一个主表)" type="warning"
{{ scope.row['type_' + type.energyTypeId] ? Number(scope.row['type_' + type.energyTypeId]).toFixed(2) : 0 }} :closable="false" size="small" style="flex: 1; max-width: 500px; margin-left: auto;"></el-alert>
</template>
</el-table-column>
<el-table-column prop="total" label="合计" fixed="right" width="150">
<template slot-scope="scope">
{{ scope.row.total ? Number(scope.row.total).toFixed(2) : 0 }}
</template>
</el-table-column>
</el-table>
</div> </div>
<div ref="sankeyChart" class="chart-container"></div>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
@@ -140,6 +143,11 @@ export default {
productionLines: [] productionLines: []
}, },
energyTypeList: [], energyTypeList: [],
productionLines: [],
selectedEnergyTypeId: null,
selectedLineAnalysisEnergyTypeId: null,
selectedSankeyEnergyTypeId: null,
selectedLines: [],
meterList: [], meterList: [],
energyRecords: [], energyRecords: [],
statistics: [], statistics: [],
@@ -147,8 +155,8 @@ export default {
trendChartType: 'day', trendChartType: 'day',
trendChart: null, trendChart: null,
energyTypeChart: null, energyTypeChart: null,
productionLineChart: null, lineEnergyTrendChart: null,
deviceRankingChart: null, sankeyChart: null,
loading: false, loading: false,
} }
}, },
@@ -161,31 +169,44 @@ export default {
window.removeEventListener('resize', this.handleResize) window.removeEventListener('resize', this.handleResize)
if (this.trendChart) this.trendChart.dispose() if (this.trendChart) this.trendChart.dispose()
if (this.energyTypeChart) this.energyTypeChart.dispose() if (this.energyTypeChart) this.energyTypeChart.dispose()
if (this.productionLineChart) this.productionLineChart.dispose() if (this.lineEnergyTrendChart) this.lineEnergyTrendChart.dispose()
if (this.deviceRankingChart) this.deviceRankingChart.dispose() if (this.sankeyChart) this.sankeyChart.dispose()
}, },
methods: { methods: {
initCharts() { initCharts() {
this.trendChart = echarts.init(this.$refs.trendChart) this.trendChart = echarts.init(this.$refs.trendChart)
this.energyTypeChart = echarts.init(this.$refs.energyTypeChart) this.energyTypeChart = echarts.init(this.$refs.energyTypeChart)
this.productionLineChart = echarts.init(this.$refs.productionLineChart) this.lineEnergyTrendChart = echarts.init(this.$refs.lineEnergyTrendChart)
this.deviceRankingChart = echarts.init(this.$refs.deviceRankingChart) this.sankeyChart = echarts.init(this.$refs.sankeyChart)
}, },
handleResize() { handleResize() {
this.trendChart && this.trendChart.resize() this.trendChart && this.trendChart.resize()
this.energyTypeChart && this.energyTypeChart.resize() this.energyTypeChart && this.energyTypeChart.resize()
this.productionLineChart && this.productionLineChart.resize() this.lineEnergyTrendChart && this.lineEnergyTrendChart.resize()
this.deviceRankingChart && this.deviceRankingChart.resize() this.sankeyChart && this.sankeyChart.resize()
}, },
async loadBasicData() { async loadBasicData() {
try { try {
this.loading = true; this.loading = true;
const [energyTypeRes, meterRes] = await Promise.all([ const [energyTypeRes, meterRes] = await Promise.all([
listEnergyType({ pageSize: 999 }), listEnergyType({ pageSize: 999 }),
listMeter({ pageSize: 999, isTotalMeter: 0 }) listMeter({ pageSize: 999 })
]) ])
this.energyTypeList = energyTypeRes.rows || [] this.energyTypeList = energyTypeRes.rows || []
if (this.energyTypeList.length > 0) {
this.selectedEnergyTypeId = this.energyTypeList[0].energyTypeId
this.selectedLineAnalysisEnergyTypeId = this.energyTypeList[0].energyTypeId
}
this.meterList = meterRes.rows || [] this.meterList = meterRes.rows || []
this.productionLines = this.dict.type.sys_lines || []
if (this.productionLines.length > 0) {
this.selectedLines = this.productionLines.slice(0, 3).map(l => l.value)
}
// 设置默认的桑基图能源类型(筛选有且只有一个主表的能源)
const validSankeyEnergyTypes = this.getValidSankeyEnergyTypes()
if (validSankeyEnergyTypes.length > 0) {
this.selectedSankeyEnergyTypeId = validSankeyEnergyTypes[0].energyTypeId
}
await this.loadData() await this.loadData()
} catch (error) { } catch (error) {
console.error('加载基础数据失败', error) console.error('加载基础数据失败', error)
@@ -216,8 +237,8 @@ export default {
this.calculateStatistics() this.calculateStatistics()
this.updateTrendChart() this.updateTrendChart()
this.updateEnergyTypeChart() this.updateEnergyTypeChart()
this.updateProductionLineChart() this.updateLineEnergyTrendChart()
this.updateDeviceRankingChart() this.updateSankeyChart()
this.updateTableData() this.updateTableData()
}, },
calculateStatistics() { calculateStatistics() {
@@ -272,13 +293,13 @@ export default {
}, },
updateTrendChart() { updateTrendChart() {
const dateFormat = this.trendChartType === 'day' ? 'YYYY-MM-DD' : const dateFormat = this.trendChartType === 'day' ? 'YYYY-MM-DD' :
this.trendChartType === 'week' ? 'YYYY-WW' : 'YYYY-MM' this.trendChartType === 'week' ? 'YYYY-WW' : 'YYYY-MM'
const groupedData = new Map() const groupedData = new Map()
this.energyRecords.forEach(record => { this.energyRecords.forEach(record => {
const dateKey = dayjs(record.recordDate).format(dateFormat) const dateKey = dayjs(record.recordDate).format(dateFormat)
const energyType = this.getEnergyTypeName(record.energyId) const energyType = this.getEnergyTypeName(record.energyId)
if (!groupedData.has(dateKey)) { if (!groupedData.has(dateKey)) {
groupedData.set(dateKey, {}) groupedData.set(dateKey, {})
} }
@@ -290,7 +311,7 @@ export default {
const dates = Array.from(groupedData.keys()).sort() const dates = Array.from(groupedData.keys()).sort()
const energyTypes = Array.from(new Set(this.energyRecords.map(r => this.getEnergyTypeName(r.energyId)))) const energyTypes = Array.from(new Set(this.energyRecords.map(r => this.getEnergyTypeName(r.energyId))))
const colors = ['#409EFF', '#67C23A', '#E6A23C', '#F56C6C', '#909399', '#00CED1'] const colors = ['#409EFF', '#67C23A', '#E6A23C', '#F56C6C', '#909399', '#00CED1']
const series = energyTypes.map((type, index) => ({ const series = energyTypes.map((type, index) => ({
name: type, name: type,
@@ -333,14 +354,26 @@ export default {
this.trendChart.setOption(option) this.trendChart.setOption(option)
}, },
updateEnergyTypeChart() { updateEnergyTypeChart() {
const typeMap = new Map() const lineMap = new Map()
this.energyRecords.forEach(record => { this.energyRecords.forEach(record => {
const typeName = this.getEnergyTypeName(record.energyId) // 只统计选中的能源类型
typeMap.set(typeName, (typeMap.get(typeName) || 0) + (Number(record.consumption) || 0)) if (this.selectedEnergyTypeId && record.energyId !== this.selectedEnergyTypeId) {
return
}
const meter = this.meterList.find(m => m.meterId === record.meterId)
if (meter && meter.productionLine) {
const lines = Array.isArray(meter.productionLine) ? meter.productionLine : [meter.productionLine]
lines.forEach(lineId => {
const lineName = this.getLineName(lineId)
lineMap.set(lineName, (lineMap.get(lineName) || 0) + (Number(record.consumption) || 0))
})
}
}) })
const data = Array.from(typeMap.entries()).map(([name, value]) => ({ name, value })) const data = Array.from(lineMap.entries()).map(([name, value]) => ({ name, value }))
const option = { const option = {
tooltip: { tooltip: {
trigger: 'item', trigger: 'item',
@@ -353,7 +386,7 @@ export default {
}, },
series: [ series: [
{ {
name: '能源类型', name: '产线消耗',
type: 'pie', type: 'pie',
radius: ['40%', '70%'], radius: ['40%', '70%'],
avoidLabelOverlap: false, avoidLabelOverlap: false,
@@ -382,112 +415,8 @@ export default {
} }
this.energyTypeChart.setOption(option) this.energyTypeChart.setOption(option)
}, },
updateProductionLineChart() {
const lineMap = new Map()
this.energyRecords.forEach(record => {
const meter = this.meterList.find(m => m.meterId === record.meterId)
if (meter && meter.productionLine) {
const lines = Array.isArray(meter.productionLine) ? meter.productionLine : [meter.productionLine]
lines.forEach(lineId => {
const lineName = this.getLineName(lineId)
lineMap.set(lineName, (lineMap.get(lineName) || 0) + (Number(record.consumption) || 0))
})
}
})
const sortedLines = Array.from(lineMap.entries())
.sort((a, b) => b[1] - a[1])
const option = {
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'value',
name: '能耗'
},
yAxis: {
type: 'category',
data: sortedLines.map(item => item[0])
},
series: [
{
name: '能耗',
type: 'bar',
data: sortedLines.map(item => item[1]),
itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
{ offset: 0, color: '#409EFF' },
{ offset: 1, color: '#00CED1' }
]),
borderRadius: [0, 4, 4, 0]
}
}
]
}
this.productionLineChart.setOption(option)
},
updateDeviceRankingChart() {
const deviceMap = new Map()
this.energyRecords.forEach(record => {
const meter = this.meterList.find(m => m.meterId === record.meterId)
const deviceName = meter ? meter.meterCode : `设备${record.meterId}`
deviceMap.set(deviceName, (deviceMap.get(deviceName) || 0) + (Number(record.consumption) || 0))
})
const sortedDevices = Array.from(deviceMap.entries())
.sort((a, b) => b[1] - a[1])
.slice(0, 10)
const option = {
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'value',
name: '能耗'
},
yAxis: {
type: 'category',
data: sortedDevices.map(item => item[0]).reverse()
},
series: [
{
name: '能耗',
type: 'bar',
data: sortedDevices.map(item => item[1]).reverse(),
itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
{ offset: 0, color: '#67C23A' },
{ offset: 1, color: '#95E67D' }
]),
borderRadius: [0, 4, 4, 0]
}
}
]
}
this.deviceRankingChart.setOption(option)
},
getEnergyTypeName(energyTypeId) { getEnergyTypeName(energyTypeId) {
const type = this.energyTypeList.find(t => t.energyTypeId === energyTypeId) const type = this.energyTypeList.find(t => t.energyTypeId === energyTypeId)
return type ? type.name : '未知' return type ? type.name : '未知'
@@ -496,9 +425,257 @@ export default {
const line = this.dict.type.sys_lines?.find(l => l.value === lineId) const line = this.dict.type.sys_lines?.find(l => l.value === lineId)
return line ? line.label : lineId return line ? line.label : lineId
}, },
// 获取有且仅有一个主表的能源类型列表
getValidSankeyEnergyTypes() {
const energyTypeMeterMap = {}
// 按能源类型分组所有表计
this.meterList.forEach(meter => {
if (!energyTypeMeterMap[meter.energyTypeId]) {
energyTypeMeterMap[meter.energyTypeId] = []
}
energyTypeMeterMap[meter.energyTypeId].push(meter)
})
// 筛选出有且仅有一个主表的能源类型
return this.energyTypeList.filter(type => {
const meters = energyTypeMeterMap[type.energyTypeId] || []
const totalMeters = meters.filter(m => m.isTotalMeter === 1)
return totalMeters.length === 1
})
},
// 更新桑基图
updateSankeyChart() {
if (!this.selectedSankeyEnergyTypeId) {
// 如果没有选择能源类型,显示空图表
this.sankeyChart.setOption({
title: { text: '请选择能源类型' },
series: []
})
return
}
// 获取当前能源类型的所有表计
const currentEnergyMeters = this.meterList.filter(m => m.energyTypeId === this.selectedSankeyEnergyTypeId)
const totalMeter = currentEnergyMeters.find(m => m.isTotalMeter === 1)
const subMeters = currentEnergyMeters.filter(m => m.isTotalMeter !== 1)
if (!totalMeter) {
this.sankeyChart.setOption({
title: { text: '当前能源类型没有主表' },
series: []
})
return
}
// 计算各节点的能耗
const nodeMap = {}
const links = []
const nodes = []
// 获取能源类型名称
const energyType = this.energyTypeList.find(t => t.energyTypeId === this.selectedSankeyEnergyTypeId)
const energyTypeName = energyType ? energyType.name : '能源'
// 1. 能源节点 -> 总表节点
let totalConsumption = 0
// 先计算总表的总消耗
this.energyRecords.forEach(record => {
if (record.meterId === totalMeter.meterId) {
totalConsumption += Number(record.consumption) || 0
}
})
// 添加能源节点
const energyNodeName = energyTypeName
nodes.push({ name: energyNodeName })
nodeMap[energyNodeName] = true
// 添加总表节点
const totalMeterName = `总表:${totalMeter.meterCode}`
nodes.push({ name: totalMeterName })
nodeMap[totalMeterName] = true
// 能源 -> 总表 连接
links.push({
source: energyNodeName,
target: totalMeterName,
value: totalConsumption
})
// 2. 总表 -> 分表/产线节点
// 按产线分组分表
const lineSubMeterMap = {}
subMeters.forEach(meter => {
const lineName = meter.productionLine ? this.getLineName(meter.productionLine) : '未分配产线'
if (!lineSubMeterMap[lineName]) {
lineSubMeterMap[lineName] = []
}
lineSubMeterMap[lineName].push(meter)
})
// 为每条产线创建节点
Object.keys(lineSubMeterMap).forEach(lineName => {
const lineMeters = lineSubMeterMap[lineName]
let lineConsumption = 0
// 计算产线总消耗
lineMeters.forEach(meter => {
this.energyRecords.forEach(record => {
if (record.meterId === meter.meterId) {
lineConsumption += Number(record.consumption) || 0
}
})
})
if (lineConsumption > 0) {
// 产线节点
nodes.push({ name: `产线:${lineName}` })
nodeMap[`产线:${lineName}`] = true
links.push({
source: totalMeterName,
target: `产线:${lineName}`,
value: lineConsumption
})
// 为产线下的每个分表创建节点
lineMeters.forEach(meter => {
let meterConsumption = 0
this.energyRecords.forEach(record => {
if (record.meterId === meter.meterId) {
meterConsumption += Number(record.consumption) || 0
}
})
if (meterConsumption > 0) {
const meterNodeName = `设备:${meter.meterCode}`
if (!nodeMap[meterNodeName]) {
nodes.push({ name: meterNodeName })
nodeMap[meterNodeName] = true
}
links.push({
source: `产线:${lineName}`,
target: meterNodeName,
value: meterConsumption
})
}
})
}
})
// 渲染桑基图
const option = {
tooltip: {
trigger: 'item',
formatter: function (params) {
if (params.dataType === 'edge') {
return `${params.data.source}${params.data.target}<br/>能耗: ${params.data.value.toFixed(2)}`
} else {
return `${params.name}<br/>能耗: ${params.value ? params.value.toFixed(2) : 0}`
}
}
},
series: [{
type: 'sankey',
layout: 'none',
emphasis: {
focus: 'adjacency'
},
data: nodes,
links: links,
lineStyle: {
color: 'gradient',
curveness: 0.5
},
label: {
color: '#333'
}
}]
}
this.sankeyChart.setOption(option)
},
updateLineEnergyTrendChart() {
const dateFormat = 'YYYY-MM-DD'
const groupedData = new Map()
this.energyRecords.forEach(record => {
if (this.selectedLineAnalysisEnergyTypeId && record.energyId !== this.selectedLineAnalysisEnergyTypeId) {
return
}
const meter = this.meterList.find(m => m.meterId === record.meterId)
if (!meter || !meter.productionLine) return
const lines = Array.isArray(meter.productionLine) ? meter.productionLine : [meter.productionLine]
const dateKey = dayjs(record.recordDate).format(dateFormat)
lines.forEach(lineId => {
if (this.selectedLines.length > 0 && !this.selectedLines.includes(lineId)) {
return
}
const lineName = this.getLineName(lineId)
if (!groupedData.has(dateKey)) {
groupedData.set(dateKey, {})
}
if (!groupedData.get(dateKey)[lineName]) {
groupedData.get(dateKey)[lineName] = 0
}
groupedData.get(dateKey)[lineName] += Number(record.consumption) || 0
})
})
const dates = Array.from(groupedData.keys()).sort()
const lineNames = Array.from(new Set(
Array.from(groupedData.values()).flatMap(obj => Object.keys(obj))
)).sort()
const colors = ['#409EFF', '#67C23A', '#E6A23C', '#F56C6C', '#909399', '#00CED1', '#00BFFF', '#32CD32']
const series = lineNames.map((lineName, index) => ({
name: lineName,
type: 'line',
smooth: true,
data: dates.map(date => groupedData.get(date)[lineName] || 0),
itemStyle: { color: colors[index % colors.length] },
areaStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: colors[index % colors.length] + '80' },
{ offset: 1, color: colors[index % colors.length] + '10' }
])
}
}))
const selectedEnergyType = this.energyTypeList.find(t => t.energyTypeId === this.selectedLineAnalysisEnergyTypeId)
const option = {
tooltip: {
trigger: 'axis'
},
legend: {
data: lineNames,
top: 10
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
top: 80,
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: dates
},
yAxis: {
type: 'value',
name: selectedEnergyType ? selectedEnergyType.name : '能耗'
},
series
}
this.lineEnergyTrendChart.setOption(option)
},
updateTableData() { updateTableData() {
const lineEnergyMap = new Map() const lineEnergyMap = new Map()
this.energyRecords.forEach(record => { this.energyRecords.forEach(record => {
const meter = this.meterList.find(m => m.meterId === record.meterId) const meter = this.meterList.find(m => m.meterId === record.meterId)
if (meter && meter.productionLine) { if (meter && meter.productionLine) {
@@ -506,7 +683,7 @@ export default {
lines.forEach(lineId => { lines.forEach(lineId => {
const lineName = this.getLineName(lineId) const lineName = this.getLineName(lineId)
const energyTypeId = record.energyId const energyTypeId = record.energyId
if (!lineEnergyMap.has(lineName)) { if (!lineEnergyMap.has(lineName)) {
lineEnergyMap.set(lineName, {}) lineEnergyMap.set(lineName, {})
} }
@@ -596,12 +773,15 @@ export default {
&.stat-0 { &.stat-0 {
border-left: 4px solid #409EFF; border-left: 4px solid #409EFF;
} }
&.stat-1 { &.stat-1 {
border-left: 4px solid #67C23A; border-left: 4px solid #67C23A;
} }
&.stat-2 { &.stat-2 {
border-left: 4px solid #E6A23C; border-left: 4px solid #E6A23C;
} }
&.stat-3 { &.stat-3 {
border-left: 4px solid #F56C6C; border-left: 4px solid #F56C6C;
} }
@@ -620,14 +800,17 @@ export default {
background: linear-gradient(135deg, #409EFF, #00CED1); background: linear-gradient(135deg, #409EFF, #00CED1);
color: #ffffff; color: #ffffff;
} }
.stat-1 & { .stat-1 & {
background: linear-gradient(135deg, #67C23A, #95E67D); background: linear-gradient(135deg, #67C23A, #95E67D);
color: #ffffff; color: #ffffff;
} }
.stat-2 & { .stat-2 & {
background: linear-gradient(135deg, #E6A23C, #F7D94C); background: linear-gradient(135deg, #E6A23C, #F7D94C);
color: #ffffff; color: #ffffff;
} }
.stat-3 & { .stat-3 & {
background: linear-gradient(135deg, #F56C6C, #FC9494); background: linear-gradient(135deg, #F56C6C, #FC9494);
color: #ffffff; color: #ffffff;
@@ -663,6 +846,8 @@ export default {
} }
.charts-section { .charts-section {
margin-bottom: 20px;
.chart-card { .chart-card {
background: #ffffff; background: #ffffff;
border-radius: 8px; border-radius: 8px;