监控覆盖
This commit is contained in:
parent
c0f28fb3ab
commit
d152e13caf
|
|
@ -130,6 +130,7 @@ html {
|
|||
height: 100%;
|
||||
flex-direction: column;
|
||||
justify-content: space-evenly;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.error-box p:nth-child(1) {
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<div class="layui-inline">
|
||||
<label class="layui-form-label">班组长姓名</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" id="workManager" class="layui-input" readonly="true" autocomplete="off"
|
||||
<input type="text" id="workManager" class="layui-input" autocomplete="off"
|
||||
style="cursor: pointer;">
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -86,7 +86,7 @@
|
|||
<label class="layui-form-label">告警类型</label>
|
||||
<div class="layui-input-inline">
|
||||
<select class="layui-select" id="errorType">
|
||||
<option value="0">请选择</option>
|
||||
<option value="">请选择</option>
|
||||
<option value="1">球机正常</option>
|
||||
<option value="2">异常掉线</option>
|
||||
<option value="3">画面不清晰</option>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<div class="layui-inline">
|
||||
<label class="layui-form-label">班组长姓名</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" id="workManager" class="layui-input" readonly="true" autocomplete="off"
|
||||
<input type="text" id="workManager" class="layui-input" autocomplete="off"
|
||||
style="cursor: pointer;">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<div class="layui-inline">
|
||||
<label class="layui-form-label">班组长姓名</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" id="workManager" class="layui-input" readonly="true" autocomplete="off"
|
||||
<input type="text" id="workManager" class="layui-input" autocomplete="off"
|
||||
style="cursor: pointer;">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<div class="layui-inline">
|
||||
<label class="layui-form-label">班组长姓名</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" id="workManager" class="layui-input" readonly="true" autocomplete="off"
|
||||
<input type="text" id="workManager" class="layui-input" autocomplete="off"
|
||||
style="cursor: pointer;">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<div class="layui-inline">
|
||||
<label class="layui-form-label">班组长姓名</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" id="workManager" class="layui-input" readonly="true" autocomplete="off"
|
||||
<input type="text" id="workManager" class="layui-input" autocomplete="off"
|
||||
style="cursor: pointer;">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
<div class="layui-inline">
|
||||
<label class="layui-form-label">班组长姓名</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" id="workManager" class="layui-input" readonly="true" autocomplete="off"
|
||||
<input type="text" id="workManager" class="layui-input" autocomplete="off"
|
||||
style="cursor: pointer;">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue