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
xwx
3 years ago
Commit
4abba68e77cbd64b83e29852487479e9852dcc46
1 parent
50ae6b0c
【968】快照管理快照概览折线图样式优化
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
9 deletions
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/inputbiztypetree/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshot/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshotOverview/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/inputbiztypetree/index.js
View file @
4abba68
...
...
@@ -64,7 +64,7 @@ export default {
},
selectFilterMethod
(
val
)
{
// 下拉框调用tree树筛选
this
.
$refs
.
kpi
Tree
.
filter
(
val
)
this
.
$refs
.
biz
Tree
.
filter
(
val
)
},
selectChangeMethod
(
e
)
{
var
arrNew
=
[]
...
...
@@ -78,7 +78,7 @@ export default {
}
}
// 设置勾选的值
this
.
$refs
.
kpi
Tree
.
setCheckedNodes
(
arrNew
)
this
.
$refs
.
biz
Tree
.
setCheckedNodes
(
arrNew
)
},
filterNode
(
value
,
data
)
{
if
(
!
value
)
return
true
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshot/index.js
View file @
4abba68
...
...
@@ -145,7 +145,10 @@ export default {
containLabel
:
true
,
},
tooltip
:
{
trigger
:
'item'
trigger
:
'axis'
,
axisPointer
:
{
type
:
'shadow'
,
}
},
color
:
"#60a0f7"
,
xAxis
:
{
...
...
@@ -188,7 +191,10 @@ export default {
containLabel
:
true
,
},
tooltip
:
{
trigger
:
'item'
trigger
:
'axis'
,
axisPointer
:
{
type
:
'shadow'
,
}
},
color
:
"#60a0f7"
,
xAxis
:
{
...
...
@@ -248,7 +254,10 @@ export default {
containLabel
:
true
,
},
tooltip
:
{
trigger
:
'item'
trigger
:
'axis'
,
axisPointer
:
{
type
:
'shadow'
,
}
},
color
:
"#60a0f7"
,
xAxis
:
{
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/views/snapshotOverview/index.js
View file @
4abba68
...
...
@@ -165,7 +165,7 @@ export default {
proxy
.
$http
.
get
(
`
/
api
-
web
/
snapshot
/
overview
/
snapshotNumByUser
`
,
obj
,(
res
)
=>
{
res
.
object
.
forEach
(
item
=>
{
let
list
=
{};
list
.
name
=
item
.
xaxis
;
list
.
name
=
item
.
xaxis
+
item
.
yaxis
;
list
.
value
=
item
.
yaxis
;
peopleSSChartsData
.
push
(
list
);
})
...
...
@@ -213,7 +213,10 @@ export default {
containLabel
:
true
,
},
tooltip
:
{
trigger
:
'item'
trigger
:
'axis'
,
axisPointer
:
{
type
:
'shadow'
,
}
},
color
:
"#60a0f7"
,
xAxis
:
{
...
...
@@ -256,7 +259,10 @@ export default {
containLabel
:
true
,
},
tooltip
:
{
trigger
:
'item'
trigger
:
'axis'
,
axisPointer
:
{
type
:
'shadow'
,
}
},
color
:
"#60a0f7"
,
xAxis
:
{
...
...
@@ -316,7 +322,10 @@ export default {
containLabel
:
true
,
},
tooltip
:
{
trigger
:
'item'
trigger
:
'axis'
,
axisPointer
:
{
type
:
'shadow'
,
}
},
color
:
"#EF8166"
,
xAxis
:
{
...
...
Please
register
or
login
to post a comment