Commit 1a925e7f by zhangzhen

驾驶舱细节优化

parent 0b53e264
...@@ -433,7 +433,7 @@ ...@@ -433,7 +433,7 @@
option: { option: {
title: { title: {
left: 'left', left: 'left',
text: '设备作业时长/分钟', text: '设备作业时长/小时',
textStyle: { textStyle: {
color: '#ffffff' // 设置标题字体颜色为白色 color: '#ffffff' // 设置标题字体颜色为白色
} }
...@@ -465,7 +465,7 @@ ...@@ -465,7 +465,7 @@
}, },
series: [ series: [
{ {
data: yData, data: yData.map(item => (item/60).toFixed(2)),
type: 'line', type: 'line',
smooth: true, smooth: true,
itemStyle: { itemStyle: {
...@@ -512,7 +512,7 @@ ...@@ -512,7 +512,7 @@
option: { option: {
title: { title: {
left: 'left', left: 'left',
text: '设备故障时长/分钟', text: '设备暂停时长/小时',
textStyle: { textStyle: {
color: '#ffffff' // 设置标题字体颜色为白色 color: '#ffffff' // 设置标题字体颜色为白色
} }
...@@ -544,7 +544,7 @@ ...@@ -544,7 +544,7 @@
}, },
series: [ series: [
{ {
data: yData, data: yData.map(item => (item/60).toFixed(2)),
type: 'line', type: 'line',
smooth: true, smooth: true,
itemStyle: { 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