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
wangtao
3 years ago
Commit
645ffa62ee43ec01d5fd66f44e419fe4598c6963
1 parent
81c0a7d2
悬浮展示优化;曲线图展示异常;
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/faultDiagnosis/result/item/resItem/index.html
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/result/service.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/faultDiagnosis/result/item/resItem/index.html
View file @
645ffa6
...
...
@@ -74,16 +74,16 @@
<el-col
:span=
"12"
class=
"align-right border-solid p-6"
>
{{item.linkState}}
</el-col>
<el-col
:span=
"12"
class=
"align-left border-solid p-6"
v-if=
"resClass!='database'"
>
<el-col
:span=
"12"
class=
"align-left border-solid p-6"
v-if=
"resClass!='database'
&& resClass!='other'
"
>
CPU
</el-col>
<el-col
:span=
"12"
class=
"align-right border-solid p-6"
v-if=
"resClass!='database'"
>
<el-col
:span=
"12"
class=
"align-right border-solid p-6"
v-if=
"resClass!='database'
&& resClass!='other'
"
>
{{item.cpu}}{{item.cpuUnit}}
</el-col>
<el-col
:span=
"12"
class=
"align-left border-solid p-6"
v-if=
"resClass!='database'"
>
<el-col
:span=
"12"
class=
"align-left border-solid p-6"
v-if=
"resClass!='database'
&& resClass!='other'
"
>
内存
</el-col>
<el-col
:span=
"12"
class=
"align-right border-solid p-6"
v-if=
"resClass!='database'"
>
<el-col
:span=
"12"
class=
"align-right border-solid p-6"
v-if=
"resClass!='database'
&& resClass!='other'
"
>
{{item.men}}{{item.menUnit}}
</el-col>
<el-col
:span=
"12"
class=
"align-left border-solid p-6"
>
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/result/service.js
View file @
645ffa6
...
...
@@ -15,6 +15,9 @@ const lineService = () => {
let
closeLineDialog
=
(
flg
)
=>
{
showLineDialog
.
value
=
flg
;
if
(
!
flg
){
dataSet
.
value
=
[];
}
}
let
openLine
=
(
proxy
,
faultNo
,
targetType
,
resId
,
kpiId
,
flag
,
title
)
=>
{
...
...
@@ -34,6 +37,7 @@ const lineService = () => {
kpiId
:
kpiId
,
flag
:
flag
}
proxy
.
$http
.
get
(
'/api-web/fault/result/findLineData'
,
params
,
function
(
res
)
{
if
(
res
&&
res
.
success
)
{
if
(
res
.
data
)
{
...
...
Please
register
or
login
to post a comment