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
‘superliu’
3 years ago
Commit
25e1e04767c623d08d24579beca2a19f2170531d
1 parent
4659256e
拨测功能前端打开拨测分析展示框bug修改
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
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/diagnosis/index.html
View file @
25e1e04
...
...
@@ -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 @
25e1e04
...
...
@@ -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 @
25e1e04
...
...
@@ -6,7 +6,7 @@ export default {
data
()
{
return
{
titleName
:
'拨测分析配置'
,
//
application
MonitorVisible: true,
//
dialtest
MonitorVisible: true,
columns
:[
{
...
...
@@ -255,7 +255,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