修改异常数据页面、修改有功功率趋势分析页面接口

This commit is contained in:
GGJ
2025-04-08 16:33:07 +08:00
parent 69aece65c1
commit 3d5c73b268
20 changed files with 2605 additions and 879 deletions

View File

@@ -29,6 +29,7 @@ const info = () => {
options.value = {
xAxis: {
type: 'value',
data:[10,100,200,300,400,500,600,700,800,900,1000],
axisLabel: {
show: true,
textStyle: {
@@ -43,7 +44,8 @@ const info = () => {
},
axisLine: {
show: true
}
},
},
grid: {
top: '10'
@@ -60,7 +62,8 @@ const info = () => {
},
splitLine: {
show: false
}
},
},
dataZoom: null,
series: [
@@ -70,11 +73,11 @@ const info = () => {
color: function (params) {
return params.value >= 90
? '#009900'
: params.value >= 60
: params.value >= 80
? '#77DA63'
: params.value >= 70
? '#FFCC00'
: params.value > 0
? '#CC0000'
: '#CCC'
: '#CC0000'
}
},