<!DOCTYPE html>
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
<head>
|
<th:block th:include="include :: header('新增安全体系文件分类')" />
|
</head>
|
<body class="white-bg">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<form class="form-horizontal m" id="form-securityType-add">
|
|
<div class="form-group">
|
<label class="col-sm-3 control-label">上级分类:</label>
|
<div class="col-sm-8">
|
<div class="input-group">
|
<input id="treeId" name="parentId" type="hidden" th:value="${securityType?.securityTypeId}"/>
|
<input class="form-control" type="text" onclick="selectSecurityTypeTree()" id="treeName" readonly="true" th:value="${securityType?.typeName}">
|
<span class="input-group-addon"><i class="fa fa-search"></i></span>
|
</div>
|
</div>
|
</div>
|
<div class="form-group">
|
<label class="col-sm-3 control-label">类型名称:</label>
|
<div class="col-sm-8">
|
<input name="typeName" class="form-control" type="text">
|
</div>
|
</div>
|
<div class="form-group">
|
<label class="col-sm-3 control-label">显示顺序:</label>
|
<div class="col-sm-8">
|
<input name="orderNum" class="form-control" type="text">
|
</div>
|
</div>
|
</form>
|
</div>
|
<th:block th:include="include :: footer" />
|
<script type="text/javascript">
|
var prefix = ctx + "dc/securityType";
|
$("#form-securityType-add").validate({
|
focusCleanup: true
|
});
|
|
function submitHandler() {
|
if ($.validate.form()) {
|
$.operate.save(prefix + "/add", $('#form-securityType-add').serialize());
|
}
|
}
|
|
/*安全体系文件分类-新增-选择父部门树*/
|
function selectSecurityTypeTree() {
|
var options = {
|
title: '安全体系文件分类选择',
|
width: "380",
|
url: prefix + "/selectSecurityTypeTree/" + $("#treeId").val(),
|
callBack: doSubmit
|
};
|
$.modal.openOptions(options);
|
}
|
|
function doSubmit(index, layero){
|
var body = layer.getChildFrame('body', index);
|
$("#treeId").val(body.find('#treeId').val());
|
$("#treeName").val(body.find('#treeName').val());
|
layer.close(index);
|
}
|
</script>
|
</body>
|
</html>
|