Merge branch 'master' of http://git.yoho.cn/ops/monitor-ui
Showing
1 changed file
with
15 additions
and
4 deletions
@@ -264,17 +264,28 @@ | @@ -264,17 +264,28 @@ | ||
264 | content += "end: " + statusObj.endTime + " "; | 264 | content += "end: " + statusObj.endTime + " "; |
265 | content += "cost: " + statusObj.costTime + "ms<br>"; | 265 | content += "cost: " + statusObj.costTime + "ms<br>"; |
266 | $("#" + id).removeClass('btn-default'); | 266 | $("#" + id).removeClass('btn-default'); |
267 | - if (statusObj.status == 0) { | 267 | + if (statusObj.status == 0) { //错误情况 |
268 | content += "exception: " + statusObj.exception; | 268 | content += "exception: " + statusObj.exception; |
269 | if (!$("#" + id).hasClass('btn-danger')) { | 269 | if (!$("#" + id).hasClass('btn-danger')) { |
270 | $("#" + id).removeClass('btn-success'); | 270 | $("#" + id).removeClass('btn-success'); |
271 | + $("#" + id).removeClass('btn-warning'); | ||
271 | $("#" + id).addClass('btn-danger'); | 272 | $("#" + id).addClass('btn-danger'); |
272 | } | 273 | } |
273 | } | 274 | } |
274 | else { | 275 | else { |
275 | - if (!$("#" + id).hasClass('btn-success')) { | ||
276 | - $("#" + id).removeClass('btn-danger'); | ||
277 | - $("#" + id).addClass('btn-success'); | 276 | + if (statusObj.costTime >= 100) { //时间比较长 |
277 | + if (!$("#" + id).hasClass('btn-warning')) { | ||
278 | + $("#" + id).removeClass('btn-danger'); | ||
279 | + $("#" + id).removeClass('btn-success'); | ||
280 | + $("#" + id).addClass('btn-warning'); | ||
281 | + } | ||
282 | + } else { | ||
283 | + | ||
284 | + if (!$("#" + id).hasClass('btn-success')) { | ||
285 | + $("#" + id).removeClass('btn-danger'); | ||
286 | + $("#" + id).removeClass('btn-warning'); | ||
287 | + $("#" + id).addClass('btn-success'); | ||
288 | + } | ||
278 | } | 289 | } |
279 | } | 290 | } |
280 | $("#" + id).attr("data-content", content); | 291 | $("#" + id).attr("data-content", content); |
-
Please register or login to post a comment