Merge branch 'master-V32-LH' into 'master'
拨测功能前端打开拨测分析展示框bug修改 See merge request !378
Showing
3 changed files
with
8 additions
and
6 deletions
@@ -467,7 +467,7 @@ | @@ -467,7 +467,7 @@ | ||
467 | <!--APM弹框--> | 467 | <!--APM弹框--> |
468 | <APM v-show="APMVisible" :isDisplay="APMVisible" :apmMonitorList="apmMonitorList" :propsData="propsData" @callbackAPM="getAPMList"></APM> | 468 | <APM v-show="APMVisible" :isDisplay="APMVisible" :apmMonitorList="apmMonitorList" :propsData="propsData" @callbackAPM="getAPMList"></APM> |
469 | <!--拨测分析弹框--> | 469 | <!--拨测分析弹框--> |
470 | - <DialTest v-show="dialtestMonitorVisible" :isDisplay="dialtestMonitorVisible" :dialtestMonitorList="dialtestMonitorList" :propsData="propsData" @callbackApp="getDialtestMoniList"></DialTest> | 470 | + <DialTest v-show="dialtestMonitorVisible" :isDisplay="dialtestMonitorVisible" :dialtestMonitorList="dialtestMonitorList" :propsData="propsData" @callbackDialtest="getDialtestMoniList"></DialTest> |
471 | <!--日志监测弹框--> | 471 | <!--日志监测弹框--> |
472 | <LogMonition v-if="logMonitionVisible" :propsData="propsData" @callbackLog="getLogMonitionList"></LogMonition> | 472 | <LogMonition v-if="logMonitionVisible" :propsData="propsData" @callbackLog="getLogMonitionList"></LogMonition> |
473 | <!--订阅人员弹框--> | 473 | <!--订阅人员弹框--> |
@@ -112,6 +112,8 @@ export default { | @@ -112,6 +112,8 @@ export default { | ||
112 | setup(props){ | 112 | setup(props){ |
113 | const {proxy} = Vue.getCurrentInstance(); | 113 | const {proxy} = Vue.getCurrentInstance(); |
114 | let applicationMonitorVisible=Vue.ref(false); | 114 | let applicationMonitorVisible=Vue.ref(false); |
115 | + let dialtestMonitorVisible=Vue.ref(false); | ||
116 | + | ||
115 | let baseVisible=Vue.ref(false); | 117 | let baseVisible=Vue.ref(false); |
116 | //btn加载中 | 118 | //btn加载中 |
117 | let isLoading=Vue.ref(false); | 119 | let isLoading=Vue.ref(false); |
@@ -211,6 +213,7 @@ export default { | @@ -211,6 +213,7 @@ export default { | ||
211 | baseCount, | 213 | baseCount, |
212 | setDetail, | 214 | setDetail, |
213 | applicationMonitorVisible, | 215 | applicationMonitorVisible, |
216 | + dialtestMonitorVisible, | ||
214 | baseVisible, | 217 | baseVisible, |
215 | modleId, | 218 | modleId, |
216 | ruleId, | 219 | ruleId, |
@@ -360,7 +363,7 @@ export default { | @@ -360,7 +363,7 @@ export default { | ||
360 | this.setDetailConfig(this.type) | 363 | this.setDetailConfig(this.type) |
361 | this.getApmListInfo(); | 364 | this.getApmListInfo(); |
362 | }, | 365 | }, |
363 | - //拨测分析 | 366 | + //打开拨测分析 |
364 | dialtestMonitorFunc(index){ | 367 | dialtestMonitorFunc(index){ |
365 | if(!this.isSaveModel()){ | 368 | if(!this.isSaveModel()){ |
366 | return; | 369 | return; |
@@ -526,7 +529,6 @@ export default { | @@ -526,7 +529,6 @@ export default { | ||
526 | } | 529 | } |
527 | }) | 530 | }) |
528 | } | 531 | } |
529 | - | ||
530 | this.dialtestMonitorVisible=true; | 532 | this.dialtestMonitorVisible=true; |
531 | break; | 533 | break; |
532 | case "log": | 534 | case "log": |
@@ -756,7 +758,7 @@ export default { | @@ -756,7 +758,7 @@ export default { | ||
756 | }, | 758 | }, |
757 | //关闭拨测分析弹框 | 759 | //关闭拨测分析弹框 |
758 | getDialtestMoniList(itemData){ | 760 | getDialtestMoniList(itemData){ |
759 | - this.applicationMonitorVisible=false; | 761 | + this.dialtestMonitorVisible=false; |
760 | if(itemData.faultConfId){ | 762 | if(itemData.faultConfId){ |
761 | this.faultConfId=itemData.faultConfId; | 763 | this.faultConfId=itemData.faultConfId; |
762 | } | 764 | } |
@@ -6,7 +6,7 @@ export default { | @@ -6,7 +6,7 @@ export default { | ||
6 | data () { | 6 | data () { |
7 | return { | 7 | return { |
8 | titleName:'拨测分析配置', | 8 | titleName:'拨测分析配置', |
9 | - // applicationMonitorVisible: true, | 9 | + // dialtestMonitorVisible: true, |
10 | columns:[ | 10 | columns:[ |
11 | 11 | ||
12 | { | 12 | { |
@@ -255,7 +255,7 @@ export default { | @@ -255,7 +255,7 @@ export default { | ||
255 | faultConfId:proxy.faultConfId, | 255 | faultConfId:proxy.faultConfId, |
256 | 256 | ||
257 | } | 257 | } |
258 | - proxy.$emit('callbackApp',obj); | 258 | + proxy.$emit('callbackDialtest',obj); |
259 | } | 259 | } |
260 | //清除数据 | 260 | //清除数据 |
261 | let restData=()=>{ | 261 | let restData=()=>{ |
-
Please register or login to post a comment