diff --git a/bns/css/supplement/monitoring_coverage.css b/bns/css/supplement/monitoring_coverage.css index b00dc83..02361f5 100644 --- a/bns/css/supplement/monitoring_coverage.css +++ b/bns/css/supplement/monitoring_coverage.css @@ -130,6 +130,7 @@ html { height: 100%; flex-direction: column; justify-content: space-evenly; + cursor: pointer; } .error-box p:nth-child(1) { diff --git a/bns/html/supplement/child/monitoring_error_list.html b/bns/html/supplement/child/monitoring_error_list.html index c4035d8..0ead63b 100644 --- a/bns/html/supplement/child/monitoring_error_list.html +++ b/bns/html/supplement/child/monitoring_error_list.html @@ -78,7 +78,7 @@
-
@@ -86,7 +86,7 @@
diff --git a/bns/html/supplement/child/monitoring_hyd_list.html b/bns/html/supplement/child/monitoring_hyd_list.html index 2089c22..187dbd2 100644 --- a/bns/html/supplement/child/monitoring_hyd_list.html +++ b/bns/html/supplement/child/monitoring_hyd_list.html @@ -78,7 +78,7 @@
-
diff --git a/bns/html/supplement/child/monitoring_risk_list.html b/bns/html/supplement/child/monitoring_risk_list.html index 55193db..389f9eb 100644 --- a/bns/html/supplement/child/monitoring_risk_list.html +++ b/bns/html/supplement/child/monitoring_risk_list.html @@ -78,7 +78,7 @@
-
diff --git a/bns/html/supplement/child/monitoring_speed_list.html b/bns/html/supplement/child/monitoring_speed_list.html index c7126a9..ae80491 100644 --- a/bns/html/supplement/child/monitoring_speed_list.html +++ b/bns/html/supplement/child/monitoring_speed_list.html @@ -78,7 +78,7 @@
-
diff --git a/bns/html/supplement/child/monitoring_watch_list.html b/bns/html/supplement/child/monitoring_watch_list.html index 2a2c6b0..81edf7c 100644 --- a/bns/html/supplement/child/monitoring_watch_list.html +++ b/bns/html/supplement/child/monitoring_watch_list.html @@ -78,7 +78,7 @@
-
diff --git a/bns/js/supplement/child/monitoring_error_list.js b/bns/js/supplement/child/monitoring_error_list.js index 0ea1ebb..bb4ded5 100644 --- a/bns/js/supplement/child/monitoring_error_list.js +++ b/bns/js/supplement/child/monitoring_error_list.js @@ -167,6 +167,7 @@ function getReqParams(page, limit, type) { teamName: $('#teamName').val(), workManager: $('#workManager').val(), errorType: $('#errorType').val(), + type:objParam.type, currentUserId: user.userId + '', isSup: user.isSup, currentUserOrgId: user.orgId @@ -181,6 +182,7 @@ function getReqParams(page, limit, type) { teamName: '', workManager: '', errorType:$('#errorType').val(), + type:objParam.type, currentUserId: user.userId + '', isSup: user.isSup, currentUserOrgId: user.orgId diff --git a/bns/js/supplement/child/monitoring_speed_list.js b/bns/js/supplement/child/monitoring_speed_list.js index 674be47..346f3cd 100644 --- a/bns/js/supplement/child/monitoring_speed_list.js +++ b/bns/js/supplement/child/monitoring_speed_list.js @@ -152,6 +152,7 @@ function getReqParams(page, limit, type) { teamName: $('#teamName').val(), workManager: $('#workManager').val(), operType:objParam.operType, + type:objParam.type, currentUserId: user.userId + '', isSup: user.isSup, currentUserOrgId: user.orgId @@ -166,6 +167,7 @@ function getReqParams(page, limit, type) { teamName: '', workManager: '', operType:objParam.operType, + type:objParam.type, currentUserId: user.userId + '', isSup: user.isSup, currentUserOrgId: user.orgId diff --git a/bns/js/supplement/monitoring_coverage.js b/bns/js/supplement/monitoring_coverage.js index cec3dda..a7204df 100644 --- a/bns/js/supplement/monitoring_coverage.js +++ b/bns/js/supplement/monitoring_coverage.js @@ -162,19 +162,20 @@ function openWatch() { function openSpeed(type) { let obj = { - type: 3, + type: 4, title: type === 1 ? '视频速率正常' : '视频速率异常', operType: type } - openIframeByParamObj3("speed_detail", "下行观看分析", "../supplement/child/monitoring_speed_list.html", "62%", "85%", obj); + openIframeByParamObj3("speed_detail", "", "../supplement/child/monitoring_speed_list.html", "62%", "85%", obj); } function openError(type) { let obj = { + type: 5, title: '球机告警类型', errorType: type } - openIframeByParamObj3("error_detail", "下行观看分析", "../supplement/child/monitoring_error_list.html", "62%", "85%", obj); + openIframeByParamObj3("error_detail", "球机告警类型", "../supplement/child/monitoring_error_list.html", "62%", "85%", obj); }