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
xwx
3 years ago
Commit
25c0f1e98a82aaf7b488fab63d8facebe2df343b
2 parents
e4436d44
4db61732
Merge branch 'master' of
http://113.200.75.45:82/monitor_v3/hg-monitor-web
into master-v32-xwx
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
18 deletions
hg-monitor-web-zj/src/main/resources/static/vue3/public/css/faultDiagnosis.css
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosis/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosisDoc/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosisNet/index.html
hg-monitor-web-zj/src/main/resources/static/vue3/public/css/faultDiagnosis.css
View file @
25c0f1e
...
...
@@ -211,6 +211,7 @@
min-height
:
500px
;
overflow-y
:
auto
;
max-height
:
630px
;
border-radius
:
5px
;
}
.network-monitor-popup
{
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosis/index.js
View file @
25c0f1e
...
...
@@ -336,11 +336,14 @@ export default {
if
(
!
this
.
isSaveModel
()){
return
;
}
this
.
configData
.
map
(
item
=>
{
if
(
item
.
type
==
'apm'
){
this
.
modleId
=
item
.
id
;
}
})
if
(
this
.
configData
){
this
.
configData
.
map
(
item
=>
{
if
(
item
.
type
==
'apm'
){
this
.
modleId
=
item
.
id
;
}
})
}
this
.
hiddenAll
();
this
.
apmMonitorHide
=
true
;
this
.
isActiveIndex
=
index
;
...
...
@@ -354,11 +357,14 @@ export default {
if
(
!
this
.
isSaveModel
()){
return
;
}
this
.
configData
.
map
(
item
=>
{
if
(
item
.
type
==
'log'
){
this
.
modleId
=
item
.
id
;
}
})
if
(
this
.
configData
){
this
.
configData
.
map
(
item
=>
{
if
(
item
.
type
==
'log'
){
this
.
modleId
=
item
.
id
;
}
})
}
this
.
$global
.
showMsg
(
'敬请期待...'
,
'warning'
);
return
;
this
.
hiddenAll
();
...
...
@@ -442,11 +448,14 @@ export default {
break
;
case
"npm"
:
//应用检测
this
.
configData
.
map
((
item
,
index
)
=>
{
if
(
item
.
type
==
typeVal
){
item
.
state
=
'1'
;
}
})
if
(
this
.
configData
){
this
.
configData
.
map
((
item
,
index
)
=>
{
if
(
item
.
type
==
typeVal
){
item
.
state
=
'1'
;
}
})
}
this
.
applicationMonitorVisible
=
true
;
break
;
case
"base"
:
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosisDoc/index.js
View file @
25c0f1e
...
...
@@ -38,7 +38,7 @@ export default {
this
.
$global
.
confirm
(
"确认删除故障吗?"
,
function
()
{
that
.
$http
.
get
(
'/api-web/fault/conf/delFaultRelated/'
+
item
.
id
,
{},
function
(
res
){
if
(
res
){
if
(
res
&&
res
.
success
){
that
.
$global
.
showMsg
(
"删除成功!"
);
that
.
diagnosisData
.
splice
(
index
,
1
);
}
else
{
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosisNet/index.html
View file @
25c0f1e
...
...
@@ -26,9 +26,9 @@
<div
class=
"grid-content bg-purple-light network-monitor-popup-right"
>
<div
class=
"set-div"
>
<div
class=
"context-head"
>
<div>
电子税务局
网络链路配置
</div>
<div>
{{bizName}}
网络链路配置
</div>
<div
>
<img
src=
"./src/assets/images/faultDiagnosis/icon-popup-right-delete.png"
>
<!-- <img src="./src/assets/images/faultDiagnosis/icon-popup-right-delete.png">--
>
</div>
</div>
<el-row
v-if=
"!addSetLIstVisible"
class=
"flex-div-start"
style=
"margin: 20px 0 10px 4%;"
>
...
...
Please
register
or
login
to post a comment