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
33e2754999cfc06fc2936615459abc44a8463ccd
2 parents
6e68455c
04f53b21
Merge branch 'master' of
http://192.168.1.136:82/monitor_v3/hg-monitor-web
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
6 deletions
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/applicationMoni/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosis/index.html
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/dialTest/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/applicationMoni/index.js
View file @
33e2754
...
...
@@ -97,6 +97,10 @@ export default {
//添加应用
let
addRes
=
(
row
,
index
)
=>
{
// row.targetId=proxy.targetId;
if
(
row
.
checked
){
proxy
.
$global
.
showMsg
(
'数据已存在,请勿重复添加'
,
'warning'
);
return
;
}
let
npmList
=
row
;
npmList
.
dataScope
=
120
;
let
params
=
{
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosis/index.html
View file @
33e2754
...
...
@@ -467,7 +467,7 @@
<!--APM弹框-->
<APM
v-show=
"APMVisible"
:isDisplay=
"APMVisible"
:apmMonitorList=
"apmMonitorList"
:propsData=
"propsData"
@
callbackAPM=
"getAPMList"
></APM>
<!--拨测分析弹框-->
<DialTest
v-show=
"dialtestMonitorVisible"
:isDisplay=
"dialtestMonitorVisible"
:dialtestMonitorList=
"dialtestMonitorList"
:propsData=
"propsData"
@
callback
App
=
"getDialtestMoniList"
></DialTest>
<DialTest
v-show=
"dialtestMonitorVisible"
:isDisplay=
"dialtestMonitorVisible"
:dialtestMonitorList=
"dialtestMonitorList"
:propsData=
"propsData"
@
callback
Dialtest
=
"getDialtestMoniList"
></DialTest>
<!--日志监测弹框-->
<LogMonition
v-if=
"logMonitionVisible"
:propsData=
"propsData"
@
callbackLog=
"getLogMonitionList"
></LogMonition>
<!--订阅人员弹框-->
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/diagnosis/index.js
View file @
33e2754
...
...
@@ -112,6 +112,8 @@ export default {
setup
(
props
){
const
{
proxy
}
=
Vue
.
getCurrentInstance
();
let
applicationMonitorVisible
=
Vue
.
ref
(
false
);
let
dialtestMonitorVisible
=
Vue
.
ref
(
false
);
let
baseVisible
=
Vue
.
ref
(
false
);
//btn加载中
let
isLoading
=
Vue
.
ref
(
false
);
...
...
@@ -211,6 +213,7 @@ export default {
baseCount
,
setDetail
,
applicationMonitorVisible
,
dialtestMonitorVisible
,
baseVisible
,
modleId
,
ruleId
,
...
...
@@ -360,7 +363,7 @@ export default {
this
.
setDetailConfig
(
this
.
type
)
this
.
getApmListInfo
();
},
//拨测分析
//
打开
拨测分析
dialtestMonitorFunc
(
index
){
if
(
!
this
.
isSaveModel
()){
return
;
...
...
@@ -526,7 +529,6 @@ export default {
}
})
}
this
.
dialtestMonitorVisible
=
true
;
break
;
case
"log"
:
...
...
@@ -756,7 +758,7 @@ export default {
},
//关闭拨测分析弹框
getDialtestMoniList
(
itemData
){
this
.
application
MonitorVisible
=
false
;
this
.
dialtest
MonitorVisible
=
false
;
if
(
itemData
.
faultConfId
){
this
.
faultConfId
=
itemData
.
faultConfId
;
}
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/faultDiagnosis/components/dialTest/index.js
View file @
33e2754
...
...
@@ -6,7 +6,7 @@ export default {
data
()
{
return
{
titleName
:
'拨测分析配置'
,
//
application
MonitorVisible: true,
//
dialtest
MonitorVisible: true,
columns
:[
{
...
...
@@ -97,6 +97,10 @@ export default {
//添加拨测分析
let
addRes
=
(
row
,
index
)
=>
{
// row.targetId=proxy.targetId;
if
(
row
.
checked
){
proxy
.
$global
.
showMsg
(
'数据已存在,请勿重复添加'
,
'warning'
);
return
;
}
let
dialtestList
=
row
;
dialtestList
.
dataScope
=
120
;
let
params
=
{
...
...
@@ -255,7 +259,7 @@ export default {
faultConfId
:
proxy
.
faultConfId
,
}
proxy
.
$emit
(
'callback
App
'
,
obj
);
proxy
.
$emit
(
'callback
Dialtest
'
,
obj
);
}
//清除数据
let
restData
=
()
=>
{
...
...
Please
register
or
login
to post a comment