first commit
This commit is contained in:
103
src/main/webapp/jsp/alarm/alarmPointRiskLevelAdd.jsp
Normal file
103
src/main/webapp/jsp/alarm/alarmPointRiskLevelAdd.jsp
Normal file
@ -0,0 +1,103 @@
|
||||
<%@ page language="java" pageEncoding="UTF-8" %>
|
||||
<script type="text/javascript">
|
||||
|
||||
function dosave() {
|
||||
//保存前先赋值班组
|
||||
$('#riskLevelId').val($('#_riskLevelId').val());
|
||||
// $('#areaId').val($('#_areaId').val());
|
||||
|
||||
$("#riskLevelForm").bootstrapValidator('validate');//提交验证
|
||||
if ($("#riskLevelForm").data('bootstrapValidator').isValid()) {//获取验证结果,如果成功,执行下面代码
|
||||
var param = $("#riskLevelForm").serialize();
|
||||
$.post(ext.contextPath + "/alarm/alarmPointRiskLevel/doSave.do", param, function (data) {
|
||||
if (data.res == 1) {
|
||||
closeModal('riskLevelModal')
|
||||
$("#table_patrolRiskLevel").bootstrapTable('refresh');
|
||||
|
||||
} else if (data.res == 0) {
|
||||
showAlert('d', '保存失败');
|
||||
} else {
|
||||
showAlert('d', data.res);
|
||||
}
|
||||
}, 'json');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$(function () {
|
||||
$.post(ext.contextPath + "/hqconfig/riskGrade/getJson.do", {}, function (data) {
|
||||
var selelct = $("#_riskLevelId").select2({
|
||||
data: data,
|
||||
placeholder: '请选择',//默认文字提示
|
||||
allowClear: false,//允许清空
|
||||
escapeMarkup: function (markup) {
|
||||
return markup;
|
||||
}, // 自定义格式化防止xss注入
|
||||
language: "zh-CN",
|
||||
minimumInputLength: 0,
|
||||
minimumResultsForSearch: 10,//数据超过十个启用搜索框
|
||||
multiple: false,
|
||||
formatResult: function formatRepo(repo) {
|
||||
return repo.text;
|
||||
}, // 函数用来渲染结果
|
||||
formatSelection: function formatRepoSelection(repo) {
|
||||
return repo.text;
|
||||
} // 函数用于呈现当前的选择
|
||||
});
|
||||
}, 'json');
|
||||
|
||||
});
|
||||
|
||||
//获取巡检区域
|
||||
var selectAreaFun = function () {
|
||||
$.post(ext.contextPath + '/timeEfficiency/patrolPoint/selectAreaLayer.do', {
|
||||
|
||||
}, function (data) {
|
||||
$("#areaSubDiv").html(data);
|
||||
openModal('areaSubModal');
|
||||
});
|
||||
};
|
||||
</script>
|
||||
<div class="modal fade" id="riskLevelModal">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title">新增风险等级</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<!-- 新增界面formid强制为subForm -->
|
||||
<form class="form-horizontal" id="riskLevelForm">
|
||||
<input type="hidden" id="risklevel" name="risklevel" class="form-control pull-right">
|
||||
<input type="hidden" id="alarmpointId" name="alarmpointId" value="${param.alarmpointId}">
|
||||
<!-- 界面提醒div强制id为alertDiv -->
|
||||
<div id="alertDiv"></div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">风险项</label>
|
||||
<div class="col-sm-10">
|
||||
<select class="form-control select2" id="_riskLevelId" name="_riskLevelId"
|
||||
style="width: 100%"></select>
|
||||
<input type="hidden" name="riskLevelId" id="riskLevelId" value="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">区域</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" id="_areaId" name="_areaId"
|
||||
onclick="selectAreaFun()" placeholder="点击选择"
|
||||
autocomplete="off" readonly="true">
|
||||
<input type="hidden" class="form-control" id="areaId" name="areaId">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">关闭</button>
|
||||
<button type="button" class="btn btn-primary" onclick="dosave()" id="btn_save">保存</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.modal-content -->
|
||||
</div>
|
||||
<!-- /.modal-dialog -->
|
||||
</div>
|
||||
Reference in New Issue
Block a user