Commit 1a925e7f by zhangzhen

驾驶舱细节优化

parent 0b53e264
......@@ -433,7 +433,7 @@
option: {
title: {
left: 'left',
text: '设备作业时长/分钟',
text: '设备作业时长/小时',
textStyle: {
color: '#ffffff' // 设置标题字体颜色为白色
}
......@@ -465,7 +465,7 @@
},
series: [
{
data: yData,
data: yData.map(item => (item/60).toFixed(2)),
type: 'line',
smooth: true,
itemStyle: {
......@@ -512,7 +512,7 @@
option: {
title: {
left: 'left',
text: '设备故障时长/分钟',
text: '设备暂停时长/小时',
textStyle: {
color: '#ffffff' // 设置标题字体颜色为白色
}
......@@ -544,7 +544,7 @@
},
series: [
{
data: yData,
data: yData.map(item => (item/60).toFixed(2)),
type: 'line',
smooth: true,
itemStyle: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment