1.概览-区域暂降评估-区域暂降评估->添加等级范围值
2.区域-终端状态统计->增加国网统计 3.台账管理-台账模板->导入信息增加(导入台账的模板:)加终端字段:监测装置安装位置、监测厂家设备编号、SIM卡号;监测点字段:行业类型、监测点性质,电网侧变电站、是否并网点、监测点运行状态。 4.运行管理-监测点台账信息->增加变电站名称+母线+监测点名称
This commit is contained in:
@@ -139,6 +139,7 @@ function initTable(data) {
|
||||
|
||||
{width: "3%", data: "scale"},
|
||||
{width: "4%", data: "lineName"},
|
||||
{width: "4%", data: "electricityQualityName"},
|
||||
{width: "4%", data: "subName"},
|
||||
{width: "5%", data: "loadType"},
|
||||
{
|
||||
|
||||
@@ -1,3 +1,35 @@
|
||||
var type;
|
||||
|
||||
$(function () {
|
||||
//初始化页面内容
|
||||
if (gwType.val() == '1') {
|
||||
type = '1';
|
||||
$("#checkbox").prop('checked', false);
|
||||
} else {
|
||||
type = '0';
|
||||
$("#checkbox").prop('checked', true);
|
||||
}
|
||||
//获取当前日期
|
||||
$("#checkbox").bootstrapSwitch({
|
||||
onText: "冀北省", // 设置ON文本
|
||||
offText: "国网", // 设置OFF文本
|
||||
onColor: "primary",// 设置ON文本颜色 (info/success/warning/danger/primary)
|
||||
offColor: "primary", // 设置OFF文本颜色 (info/success/warning/danger/primary)
|
||||
size: "small", // 设置控件大小,从小到大 (mini/small/normal/large)
|
||||
handleWidth: "40",//设置控件宽度
|
||||
// 当开关状态改变时触发
|
||||
onSwitchChange: function (event, state) {
|
||||
if (state == true) {
|
||||
type = '0';
|
||||
} else {
|
||||
type = '1';
|
||||
}
|
||||
load();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
/**
|
||||
* 终端运行管理
|
||||
*/
|
||||
@@ -85,7 +117,8 @@ function load() {
|
||||
status: status,
|
||||
devflag: devflag,
|
||||
gdName: gdIndex,
|
||||
manufacturer: manufacturer
|
||||
manufacturer: manufacturer,
|
||||
type: type
|
||||
},
|
||||
beforeSend: function () {
|
||||
i = ityzl_SHOW_LOAD_LAYER();
|
||||
|
||||
Reference in New Issue
Block a user