1.pqs9000-》区域-》终端状态统计,添加监测性质条件(电网侧||非电网侧)
2.pqs9000-》区域-》数据完整性统计,添加监测性质条件(电网侧||非电网侧) 3.pqs9000-》详细分析-》区域稳态超标分类,添加监测性质条件(电网侧||非电网侧) 4.电压偏差限制判断
This commit is contained in:
@@ -81,6 +81,14 @@
|
||||
<label >干扰源类型:</label>
|
||||
<select class="width3 form-control" id="loadtype"></select>
|
||||
</div>
|
||||
<div class="form-group has-feedback mr10" >
|
||||
<label >监测性质:</label>
|
||||
<select class="width3 form-control" id="monitorNature">
|
||||
<option selected value="-1">全部</option>
|
||||
<option value="0">电网侧</option>
|
||||
<option value="1">非电网侧</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
|
||||
@@ -94,6 +94,14 @@
|
||||
<label >干扰源类型:</label>
|
||||
<select class="width3 form-control" id="loadtype"></select>
|
||||
</div>
|
||||
<div class="form-group has-feedback mr10" >
|
||||
<label >监测性质:</label>
|
||||
<select class="width3 form-control" id="monitorNature">
|
||||
<option selected value="-1">全部</option>
|
||||
<option value="0">电网侧</option>
|
||||
<option value="1">非电网侧</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt5">
|
||||
<%--区域模块--%>
|
||||
@@ -227,52 +235,59 @@
|
||||
$("#scale").attr("disabled",false);
|
||||
$("#manc").attr("disabled",false);
|
||||
$("#loadtype").attr("disabled",false);
|
||||
$("#monitorNature").attr("disabled",false);
|
||||
|
||||
showtype = 0;
|
||||
var area = $area.eq(0).attr("index");
|
||||
var scale = $("#scale").val();
|
||||
var manc = $("#manc").val();
|
||||
var loadtype = $("#loadtype").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype)
|
||||
var monitorNature = $("#monitorNature").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype,monitorNature)
|
||||
}else if($("option:selected",this).val() == 1){
|
||||
loadselect("电压等级","scale");
|
||||
$("#area").attr("disabled",false);
|
||||
$("#scale").attr("disabled",true);
|
||||
$("#manc").attr("disabled",false);
|
||||
$("#loadtype").attr("disabled",false);
|
||||
|
||||
$("#monitorNature").attr("disabled",false);
|
||||
$("#area").css("background-color","#fff");
|
||||
showtype = 1;
|
||||
var area = $area.eq(0).attr("index");
|
||||
var scale = $("#scale").val();
|
||||
var manc = $("#manc").val();
|
||||
var loadtype = $("#loadtype").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype);
|
||||
var monitorNature = $("#monitorNature").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype,monitorNature);
|
||||
}else if($("option:selected",this).val() == 2){
|
||||
loadselect("制造厂商","manc");
|
||||
$("#area").attr("disabled",false);
|
||||
$("#scale").attr("disabled",false);
|
||||
$("#manc").attr("disabled",true);
|
||||
$("#loadtype").attr("disabled",false);
|
||||
$("#monitorNature").attr("disabled",false);
|
||||
$("#area").css("background-color","#fff");
|
||||
showtype = 2;
|
||||
var scale = $("#scale").val();
|
||||
var manc = $("#manc").val();
|
||||
var loadtype = $("#loadtype").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype);
|
||||
var monitorNature = $("#monitorNature").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype,monitorNature);
|
||||
}else if($("option:selected",this).val() == 3){
|
||||
loadselect("干扰源类型","loadtype");
|
||||
$("#area").attr("disabled",false);
|
||||
$("#scale").attr("disabled",false);
|
||||
$("#manc").attr("disabled",false);
|
||||
$("#loadtype").attr("disabled",true);
|
||||
$("#monitorNature").attr("disabled",false);
|
||||
$("#area").css("background-color","#fff");
|
||||
showtype = 3;
|
||||
var area = $area.eq(0).attr("index");
|
||||
var scale = $("#scale").val();
|
||||
var manc = $("#manc").val();
|
||||
var loadtype = $("#loadtype").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype);
|
||||
var monitorNature = $("#monitorNature").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype,monitorNature);
|
||||
}
|
||||
})
|
||||
|
||||
@@ -343,11 +358,12 @@
|
||||
$("#scale").attr("disabled",false);
|
||||
$("#manc").attr("disabled",false);
|
||||
$("#loadtype").attr("disabled",false);
|
||||
$("#monitorNature").attr("disabled",false);
|
||||
//初始化页面内容
|
||||
var area = $area.eq(0).attr("index");
|
||||
var startTime = $startTime.eq(0).val();
|
||||
var endTime = $endTime.eq(0).val();
|
||||
refresh(startTime, endTime, area);
|
||||
refresh(startTime,endTime,area);
|
||||
}
|
||||
})
|
||||
})
|
||||
@@ -359,10 +375,11 @@
|
||||
var scale = $("#scale").val();
|
||||
var manc = $("#manc").val();
|
||||
var loadtype = $("#loadtype").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype);
|
||||
var monitorNature = $("#monitorNature").val();
|
||||
refresh(startTime, endTime, area,scale,manc,loadtype,monitorNature);
|
||||
});
|
||||
|
||||
function refresh(startTime, endTime,area,scale,manc,loadtype) {
|
||||
function refresh(startTime, endTime,area,scale,manc,loadtype,monitorNature) {
|
||||
var i;
|
||||
$.ajax({
|
||||
url: '/pqs9000/area/deviceStatus',
|
||||
@@ -373,7 +390,8 @@
|
||||
area: area,
|
||||
scale:scale,
|
||||
manc:manc,
|
||||
loadtype:loadtype
|
||||
loadtype:loadtype,
|
||||
monitorNature: monitorNature
|
||||
},
|
||||
dataType: 'json',
|
||||
beforeSend: function () {
|
||||
|
||||
@@ -78,6 +78,14 @@
|
||||
<label>监测点:</label>
|
||||
<input type="checkbox" checked class="checkbox"/>
|
||||
</div>
|
||||
<div class="form-group has-feedback mr10" >
|
||||
<label >监测性质:</label>
|
||||
<select class="width3 form-control" id="monitorNature">
|
||||
<option selected value="-1">全部</option>
|
||||
<option value="0">电网侧</option>
|
||||
<option value="1">非电网侧</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group has-feedback ml10">
|
||||
<label style="margin-top: 3px">全部监测点:</label>
|
||||
<input type="checkbox" id="allLineCheck"/>
|
||||
|
||||
@@ -150,7 +150,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<th colspan="4">电压偏差</th>
|
||||
<th colspan="4">谐波电流</th>+
|
||||
<th colspan="4">谐波电流</th>
|
||||
<th colspan="4">谐波电压</th>
|
||||
<th colspan="4">电压总谐波畸变率</th>
|
||||
<th colspan="4">谐波电压含有率</th>
|
||||
@@ -165,7 +165,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<th>超标天数</th>
|
||||
<th>最大幅值(绝对值)</th>
|
||||
<th>最大幅值</th>
|
||||
<th>限值</th>
|
||||
<th>差值</th>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user