1.概览-区域暂降评估-区域暂降评估->添加等级范围值

2.区域-终端状态统计->增加国网统计
3.台账管理-台账模板->导入信息增加(导入台账的模板:)加终端字段:监测装置安装位置、监测厂家设备编号、SIM卡号;监测点字段:行业类型、监测点性质,电网侧变电站、是否并网点、监测点运行状态。
4.运行管理-监测点台账信息->增加变电站名称+母线+监测点名称
This commit is contained in:
wr
2024-04-02 14:31:00 +08:00
parent fefd704e6e
commit 542cdbc9b3
20 changed files with 346 additions and 55 deletions

View File

@@ -623,7 +623,8 @@
district.on('click', function (params) {
if (getRole("/pqs9000/business/runtime") === 1) {
var city=params.data.areaIndex;
window.top.addTab('runtime?area='+city, '终端运行情况')
var type= tiggleValue=="冀北省"?"0":"1";
window.top.addTab('runtime?area='+city+'&&type='+ type, '终端运行情况')
}
});
}

View File

@@ -90,6 +90,7 @@
<th>市公司</th>
<th>监测点电压等级</th>
<th>监测点名称</th>
<th>电能质量名称</th>
<th>所属电站</th>
<th>干扰源类型</th>
<th>监测对象名称</th>

View File

@@ -16,6 +16,7 @@
<link rel="stylesheet" href="${ctx}/css/plugin/datatables/datatables.bootstrap.css">
<link rel="stylesheet" href="${ctx}/css/plugin/datatimepicker/bootstrap-datetimepicker.css">
<link rel="stylesheet" href="${ctx}/css/plugin/basicButton.css">
<link rel="stylesheet" href="${ctx}/css/plugin/bootstrapSwitch/bootstrap-switch.min.css">
<link rel="stylesheet" href="${ctx}/css/basic.css">
<style>
.tr {
@@ -57,6 +58,10 @@
style="position: absolute;width: 140px;height: 147px;border: 2px solid #C9CBCE;overflow: auto;top: 32px;background: #fff;z-index: 100;border-radius: 2px">
</div>
</div>
<div class="form-group has-feedback mr10">
<label>统计类型:</label>
<input type="checkbox" id="checkbox"/>
</div>
<label class="form-group">终端状态:</label> <select
class="form-control" id="devflag">
<option value="">全部</option>
@@ -131,9 +136,12 @@
<input type="hidden" id="username" value="${username}">
<input type="hidden" id="token" value="${token}">
<input id="_area" value="${area}" hidden>
<input id="gwType" value="${type}" hidden>
<script src="${ctx}/js/plugin/jquery/jquery.min.js"></script>
<script src="${ctx}/js/plugin/bootstrap/bootstrap.min.js"></script>
<script src="${ctx}/js/plugin/jquery/jquery.dataTables.js"></script>
<script src="${ctx}/js/plugin/bootstrap/bootstrap.min.js"></script>
<script src="${ctx}/js/plugin/datatables/datatables.jquery.js"></script>
<script src="${ctx}/js/plugin/bootstrapSwitch/bootstrap-switch.min.js"></script>
<script src="${ctx}/js/plugin/datatables/datatables.bootstrap.js"></script>
<script src="${ctx}/js/plugin/layui/layui.all.js"></script>
<script src="${ctx}/js/plugin/bootstrap/bootstrap-datetimepicker.js"></script>
@@ -157,6 +165,7 @@
toHelper("#jcdyxzt");
});
var $area = $("#area");
var gwType = $("#gwType");
</script>
</body>
</html>