需求变更整改
This commit is contained in:
@@ -252,9 +252,9 @@ const histogram = (res: any) => {
|
||||
} else if (0.4 < params.value && params.value <= 0.8 && params.value !== 0.05) {
|
||||
return '#FF9900'
|
||||
} else if (0 < params.value && params.value <= 0.4 && params.value !== 0.05) {
|
||||
return '#CC0000'
|
||||
return '#A52a2a'
|
||||
} else if (params.value == 0.05) {
|
||||
return '#CC0000'
|
||||
return '#A52a2a'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -276,13 +276,13 @@ const histogram = (res: any) => {
|
||||
name: '',
|
||||
yAxis: 0.4,
|
||||
lineStyle: {
|
||||
color: '#CC0000'
|
||||
color: '#A52a2a'
|
||||
},
|
||||
label: {
|
||||
// position: "middle",
|
||||
formatter: '{b}',
|
||||
textStyle: {
|
||||
color: '#CC0000'
|
||||
color: '#A52a2a'
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -163,7 +163,7 @@ const map = (res: any) => {
|
||||
}
|
||||
],
|
||||
inRange: {
|
||||
color: ['#ccc', '#CC0000', '#FF9900', '#3399CC', '#339966']
|
||||
color: ['#ccc', '#A52a2a', '#FF9900', '#3399CC', '#339966']
|
||||
}
|
||||
},
|
||||
|
||||
@@ -284,9 +284,9 @@ const histogram = (res: any) => {
|
||||
} else if (0.4 < params.value && params.value <= 0.8 && params.value !== 0.05) {
|
||||
return '#FF9900'
|
||||
} else if (0 < params.value && params.value <= 0.4 && params.value !== 0.05) {
|
||||
return '#CC0000'
|
||||
return '#A52a2a'
|
||||
} else if (params.value == 0.05) {
|
||||
return '#CC0000'
|
||||
return '#A52a2a'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -308,13 +308,13 @@ const histogram = (res: any) => {
|
||||
name: '',
|
||||
yAxis: 0.4,
|
||||
lineStyle: {
|
||||
color: '#CC0000'
|
||||
color: '#A52a2a'
|
||||
},
|
||||
label: {
|
||||
// position: "middle",
|
||||
formatter: '{b}',
|
||||
textStyle: {
|
||||
color: '#CC0000'
|
||||
color: '#A52a2a'
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -33,7 +33,7 @@ const tableStore = new TableStore({
|
||||
url: '/system-boot/audit/getAuditLog',
|
||||
method: 'POST',
|
||||
column: [
|
||||
{ title: '操作时间', field: 'time', align: 'center', width: 200 },
|
||||
{ title: '操作时间', field: 'time', align: 'center', width: 200 , sortable: true},
|
||||
{ title: '操作人员', field: 'userName', align: 'center', width: 120 },
|
||||
{ title: '操作类型', field: 'operate', align: 'center', width: 220 },
|
||||
{ title: '事件描述', field: 'describe', align: 'center', showOverflow: true, minWidth: 200 },
|
||||
|
||||
@@ -61,14 +61,14 @@ const tableStore = new TableStore({
|
||||
{ title: '供电公司', field: 'gdName', align: 'center', width: 120 },
|
||||
{ title: '变电站', field: 'bdName', align: 'center', showOverflow: true, minWidth: 100 },
|
||||
{ title: '终端编号', field: 'devName', align: 'center', width: 160 },
|
||||
{ title: '投运时间', field: 'loginTime', align: 'center', width: 200 },
|
||||
{ title: '投运时间', field: 'loginTime', align: 'center', width: 200 , sortable: true},
|
||||
{ title: '厂家', field: 'manufacturer', align: 'center', width: 160 },
|
||||
{ title: '型号', field: 'devType', align: 'center', width: 200 },
|
||||
{ title: '网络参数', field: 'ip', align: 'center', width: 200 },
|
||||
{ title: '端口', field: 'port', align: 'center', width: 100 },
|
||||
{ title: '终端状态', field: 'runFlag', align: 'center', width: 100 },
|
||||
{ title: '通讯状态', field: 'comFlag', align: 'center', width: 100 },
|
||||
{ title: '最新数据', field: 'updateTime', align: 'center', width: 200 },
|
||||
{ title: '最新数据', field: 'updateTime', align: 'center', width: 200, sortable: true },
|
||||
{
|
||||
title: '评价',
|
||||
field: 'onlineEvaluate',
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
<span class="smallBlock" style="background: #996600"></span>
|
||||
热备用
|
||||
</span>
|
||||
<span style="color: #cc0000">
|
||||
<span class="smallBlock" style="background: #cc0000"></span>
|
||||
<span style="color: #A52a2a">
|
||||
<span class="smallBlock" style="background: #A52a2a"></span>
|
||||
停运
|
||||
</span>
|
||||
</span>
|
||||
@@ -33,8 +33,8 @@
|
||||
<span style="color: #daa520">
|
||||
<span class="smallBlock" style="background: #daa520"></span>
|
||||
{{ '60 %≤在线率 < 90 %' }} </span>
|
||||
<span style="color: #cc0000">
|
||||
<span class="smallBlock" style="background: #cc0000"></span>
|
||||
<span style="color: #A52a2a">
|
||||
<span class="smallBlock" style="background: #A52a2a"></span>
|
||||
{{ '在线率 < 60 %' }} </span>
|
||||
</span>
|
||||
</div>
|
||||
@@ -174,7 +174,7 @@ const tableStore = new TableStore({
|
||||
return new echarts.graphic.LinearGradient(0, 1, 0, 0, [
|
||||
{
|
||||
offset: 1,
|
||||
color: '#cc0000'
|
||||
color: '#A52a2a'
|
||||
}
|
||||
])
|
||||
} else if ((params.value = 3.14159)) {
|
||||
@@ -216,7 +216,7 @@ const tableStore = new TableStore({
|
||||
return new echarts.graphic.LinearGradient(0, 1, 0, 0, [
|
||||
{
|
||||
offset: 1,
|
||||
color: '#CC0000'
|
||||
color: '#A52a2a'
|
||||
}
|
||||
])
|
||||
} else if ((params.value = 3.14159)) {
|
||||
@@ -309,7 +309,7 @@ const tableStore = new TableStore({
|
||||
return new echarts.graphic.LinearGradient(0, 1, 0, 0, [
|
||||
{
|
||||
offset: 1,
|
||||
color: '#cc0000'
|
||||
color: '#A52a2a'
|
||||
}
|
||||
])
|
||||
} else if ((params.value = 3.14159)) {
|
||||
@@ -351,7 +351,7 @@ const tableStore = new TableStore({
|
||||
return new echarts.graphic.LinearGradient(0, 1, 0, 0, [
|
||||
{
|
||||
offset: 1,
|
||||
color: '#CC0000'
|
||||
color: '#A52a2a'
|
||||
}
|
||||
])
|
||||
} else if ((params.value = 3.14159)) {
|
||||
|
||||
Reference in New Issue
Block a user