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
Email Patches
Plain Diff
Browse Files
Authored by
鲁尚清
3 years ago
Commit
ca1926e8c47cedfb35f17b58cf3551d0442bca65
1 parent
06e4bab0
【404】【告警概览】资源类型告警统计字段丢失 ,#1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
hg-monitor-web-base/src/main/resources/static/src/controller/overviewIndex.js
hg-monitor-web-base/src/main/resources/static/src/controller/overviewIndex.js
View file @
ca1926e
...
...
@@ -167,6 +167,18 @@ layui.define(['admin', 'form', 'table', 'element', 'sessions', 'common', 'echart
var
generalList
=
chartData
.
generalList
;
var
importantList
=
chartData
.
importantList
;
var
seriousList
=
chartData
.
seriousList
;
//start lsq 处理x轴标签如果值为null则显示为空 2022-06-20
let
arr
=
[];
if
(
nameList
&&
nameList
.
length
>
0
){
nameList
.
map
(
item
=>
{
if
(
item
==
null
||
item
==
'null'
){
item
=
''
;
}
arr
.
push
(
item
)
})
}
nameList
=
arr
;
//end lsq 2022-06-20
var
barSeries
=
[{
name
:
'一般告警'
,
data
:
generalList
,
...
...
Please
register
or
login
to post a comment