Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
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
王涛
3 years ago
Commit
fd0be25c169ed48f2963a46ad3f250e41f97890a
2 parents
11a61fe7
1d2f7127
Merge branch 'master-500-dev-xwx' into 'master-500-dev'
【315】 测试告警业务数量统计展示 See merge request
!630
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
hg-monitor-web-base/src/main/resources/static/src/controller/main-biz-card.js
hg-monitor-web-base/src/main/resources/static/src/controller/main-biz-card.js
View file @
fd0be25
...
...
@@ -339,13 +339,13 @@ layui.define(['common', 'swiper', 'admin','commonDetail','mxClient','sessions','
setDefault
(
'select-content-ul-bus'
,
busVal
,
'#bus-text-view'
);
// Start 告警级别默认为严重告警,点击左下角选择告警级别,页面的小红点切换不同告警的数量,item根据告警数量进行排序 LSQ 2021/12/29 19:37
$
(
".select-
total
"
).
hide
();
$
(
".select-
serious
"
).
hide
();
$
(
".select-important"
).
hide
();
$
(
".select-normal"
).
hide
();
var
itemArr
=
$
(
".index-banner-item"
);
itemArr
.
map
((
index
,
item
)
=>
{
if
(
$
(
item
).
data
(
'serious'
)
==
'0'
){
$
(
item
).
find
(
'.select-serious'
).
hide
();
if
(
$
(
item
).
data
(
'total'
)
==
'0'
){
$
(
item
).
find
(
'.select-total'
).
hide
();
}
$
(
item
).
css
(
'order'
,
$
(
item
).
data
(
'serious'
))
})
...
...
Please
register
or
login
to post a comment