|
|
@ -1,7 +1,7 @@
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
|
|
<head>
|
|
|
|
<head>
|
|
|
|
<th:block th:include="include :: header('修改部门')" />
|
|
|
|
<th:block th:include="include :: header('修改单位')" />
|
|
|
|
</head>
|
|
|
|
</head>
|
|
|
|
<body class="white-bg">
|
|
|
|
<body class="white-bg">
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
|
|
|
@ -9,7 +9,7 @@
|
|
|
|
<input name="deptId" type="hidden" th:field="*{deptId}" />
|
|
|
|
<input name="deptId" type="hidden" th:field="*{deptId}" />
|
|
|
|
<input id="treeId" name="parentId" type="hidden" th:field="*{parentId}" />
|
|
|
|
<input id="treeId" name="parentId" type="hidden" th:field="*{parentId}" />
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">上级部门:</label>
|
|
|
|
<label class="col-sm-3 control-label">上级单位:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="input-group">
|
|
|
|
<div class="input-group">
|
|
|
|
<input class="form-control" type="text" id="treeName" onclick="selectDeptTree()" readonly="true" th:field="*{parentName}">
|
|
|
|
<input class="form-control" type="text" id="treeName" onclick="selectDeptTree()" readonly="true" th:field="*{parentName}">
|
|
|
@ -40,7 +40,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label is-required">部门名称:</label>
|
|
|
|
<label class="col-sm-3 control-label is-required">单位名称:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input class="form-control" type="text" name="deptName" th:field="*{deptName}" id="deptName" required>
|
|
|
|
<input class="form-control" type="text" name="deptName" th:field="*{deptName}" id="deptName" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -70,7 +70,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">部门状态:</label>
|
|
|
|
<label class="col-sm-3 control-label">单位状态:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
|
|
|
|
<div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
|
|
|
|
<input type="radio" th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}" th:field="*{status}">
|
|
|
|
<input type="radio" th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}" th:field="*{status}">
|
|
|
@ -116,7 +116,7 @@
|
|
|
|
},
|
|
|
|
},
|
|
|
|
messages: {
|
|
|
|
messages: {
|
|
|
|
"deptName": {
|
|
|
|
"deptName": {
|
|
|
|
remote: "部门已经存在"
|
|
|
|
remote: "单位已经存在"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
focusCleanup: true
|
|
|
|
focusCleanup: true
|
|
|
@ -128,20 +128,20 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*部门管理-修改-选择部门树*/
|
|
|
|
/*单位管理-修改-选择单位树*/
|
|
|
|
function selectDeptTree() {
|
|
|
|
function selectDeptTree() {
|
|
|
|
var deptId = $("#treeId").val();
|
|
|
|
var deptId = $("#treeId").val();
|
|
|
|
var excludeId = $("input[name='deptId']").val();
|
|
|
|
var excludeId = $("input[name='deptId']").val();
|
|
|
|
if(deptId > 0) {
|
|
|
|
if(deptId > 0) {
|
|
|
|
var options = {
|
|
|
|
var options = {
|
|
|
|
title: '部门选择',
|
|
|
|
title: '单位选择',
|
|
|
|
width: "380",
|
|
|
|
width: "380",
|
|
|
|
url: prefix + "/selectDeptTree/" + $("#treeId").val() + "/" + excludeId,
|
|
|
|
url: prefix + "/selectDeptTree/" + $("#treeId").val() + "/" + excludeId,
|
|
|
|
callBack: doSubmit
|
|
|
|
callBack: doSubmit
|
|
|
|
};
|
|
|
|
};
|
|
|
|
$.modal.openOptions(options);
|
|
|
|
$.modal.openOptions(options);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
$.modal.alertError("父部门不能选择");
|
|
|
|
$.modal.alertError("父单位不能选择");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|