diff --git a/src/pages/udplog/index.vue b/src/pages/udplog/index.vue
index a932021..3ef23bf 100644
--- a/src/pages/udplog/index.vue
+++ b/src/pages/udplog/index.vue
@@ -429,7 +429,7 @@
+ placeholder="请输入" disabled="true"/>
@@ -442,7 +442,7 @@
短信试发
取消
- 确定
+ 确定
@@ -816,9 +816,10 @@
if (type === 'CPU') {
if (cpuAvg >= 85) {
return 'exception';
- } else if (cpuMax >= 90 && cpuAvg < 85) {
+ //} else if (cpuMax >= 90 && cpuAvg < 85) {
+ } else if (cpuAvg >= 80) {
return 'warning';
- } else if (cpuMax < 90) {
+ } else {//if (cpuMax < 90) {
return 'success';
}
return null
@@ -826,9 +827,10 @@
if (cpuAvg >= 85) {
return 'danger';
- } else if (cpuMax >= 90 && cpuAvg < 85) {
+ //} else if (cpuMax >= 90 && cpuAvg < 85) {
+ } else if (cpuAvg >= 80) {
return 'warning';
- } else if (cpuMax < 90) {
+ } else {//if (cpuMax < 90) {
return 'success';
}
// 通用处理