Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ops
/
monitor-ui
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
zhengyouwei
8 years ago
Commit
c941691e5db23e6c160aebd1745895549eac6133
2 parents
3fe310e9
3098bef3
Merge branch 'master' of
http://git.yoho.cn/ops/monitor-ui
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
monitor-ui-web/src/main/webapp/jsp/javaapi/javaApiList.jsp
monitor-ui-web/src/main/webapp/jsp/javaapi/javaApiList.jsp
View file @
c941691
...
...
@@ -264,17 +264,28 @@
content
+=
"end: "
+
statusObj
.
endTime
+
" "
;
content
+=
"cost: "
+
statusObj
.
costTime
+
"ms<br>"
;
$
(
"#"
+
id
).
removeClass
(
'btn-default'
);
if
(
statusObj
.
status
==
0
)
{
if
(
statusObj
.
status
==
0
)
{
//错误情况
content
+=
"exception: "
+
statusObj
.
exception
;
if
(
!
$
(
"#"
+
id
).
hasClass
(
'btn-danger'
))
{
$
(
"#"
+
id
).
removeClass
(
'btn-success'
);
$
(
"#"
+
id
).
removeClass
(
'btn-warning'
);
$
(
"#"
+
id
).
addClass
(
'btn-danger'
);
}
}
else
{
if
(
!
$
(
"#"
+
id
).
hasClass
(
'btn-success'
))
{
$
(
"#"
+
id
).
removeClass
(
'btn-danger'
);
$
(
"#"
+
id
).
addClass
(
'btn-success'
);
if
(
statusObj
.
costTime
>=
100
)
{
//时间比较长
if
(
!
$
(
"#"
+
id
).
hasClass
(
'btn-warning'
))
{
$
(
"#"
+
id
).
removeClass
(
'btn-danger'
);
$
(
"#"
+
id
).
removeClass
(
'btn-success'
);
$
(
"#"
+
id
).
addClass
(
'btn-warning'
);
}
}
else
{
if
(
!
$
(
"#"
+
id
).
hasClass
(
'btn-success'
))
{
$
(
"#"
+
id
).
removeClass
(
'btn-danger'
);
$
(
"#"
+
id
).
removeClass
(
'btn-warning'
);
$
(
"#"
+
id
).
addClass
(
'btn-success'
);
}
}
}
$
(
"#"
+
id
).
attr
(
"data-content"
,
content
);
...
...
Please
register
or
login
to post a comment