提交修改

kingbase
dshclm 10 months ago
parent c12da9555b
commit dddd99d102

@ -1,14 +1,14 @@
<!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">
<form class="form-horizontal m" id="form-dept-add"> <form class="form-horizontal m" id="form-dept-add">
<input id="treeId" name="parentId" type="hidden" th:value="${dept?.deptId}" /> <input id="treeId" name="parentId" type="hidden" th:value="${dept?.deptId}" />
<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">
<div class="input-group"> <div class="input-group">
<input class="form-control" type="text" onclick="selectDeptTree()" id="treeName" readonly="true" th:value="${dept?.deptName}" required> <input class="form-control" type="text" onclick="selectDeptTree()" id="treeName" readonly="true" th:value="${dept?.deptName}" required>
@ -39,7 +39,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" id="deptName" required> <input class="form-control" type="text" name="deptName" id="deptName" required>
</div> </div>
@ -69,7 +69,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">
<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" required th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}"> <input type="radio" required th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}">
@ -154,7 +154,7 @@
}, },
messages: { messages: {
"deptName": { "deptName": {
remote: "部门已经存在" remote: "单位已经存在"
} }
}, },
focusCleanup: true focusCleanup: true
@ -166,15 +166,15 @@
} }
} }
/*部门管理-新增-选择父部门树*/ /*单位管理-新增-选择父单位树*/
function selectDeptTree() { function selectDeptTree() {
var treeId = $("#treeId").val(); var treeId = $("#treeId").val();
if ($.common.isEmpty(treeId)) { if ($.common.isEmpty(treeId)) {
$.modal.alertWarning("请先添加用户所属的部门"); $.modal.alertWarning("请先添加用户所属的单位");
return; return;
} }
var options = { var options = {
title: '部门选择', title: '单位选择',
width: "380", width: "380",
url: prefix + "/selectDeptTree/" + treeId + "/0", url: prefix + "/selectDeptTree/" + treeId + "/0",
callBack: doSubmit callBack: doSubmit

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head> <head>
<th:block th:include="include :: header('部门列表')" /> <th:block th:include="include :: header('单位列表')" />
</head> </head>
<body class="gray-bg"> <body class="gray-bg">
<div class="container-div"> <div class="container-div">
@ -11,10 +11,10 @@
<div class="select-list"> <div class="select-list">
<ul> <ul>
<li> <li>
部门名称:<input type="text" name="deptName"/> 单位名称:<input type="text" name="deptName"/>
</li> </li>
<li> <li>
部门状态:<select name="status" th:with="type=${@dict.getType('sys_normal_disable')}"> 单位状态:<select name="status" th:with="type=${@dict.getType('sys_normal_disable')}">
<option value="">所有</option> <option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select> </select>
@ -27,7 +27,7 @@
</div> </div>
</form> </form>
</div> </div>
<div class="btn-group-sm" id="toolbar" role="group"> <div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-success" onclick="$.operate.add(100)" shiro:hasPermission="system:dept:add"> <a class="btn btn-success" onclick="$.operate.add(100)" shiro:hasPermission="system:dept:add">
<i class="fa fa-plus"></i> 新增 <i class="fa fa-plus"></i> 新增
@ -61,14 +61,14 @@
createUrl: prefix + "/add/{id}", createUrl: prefix + "/add/{id}",
updateUrl: prefix + "/edit/{id}", updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove/{id}", removeUrl: prefix + "/remove/{id}",
modalName: "部门", modalName: "单位",
columns: [{ columns: [{
field: 'selectItem', field: 'selectItem',
radio: true radio: true
}, },
{ {
field: 'deptName', field: 'deptName',
title: '部门名称', title: '单位名称',
align: "left" align: "left"
}, },
{ {
@ -109,4 +109,4 @@
}); });
</script> </script>
</body> </body>
</html> </html>

@ -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("父单位不能选择");
} }
} }

@ -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('单位树选择')" />
<th:block th:include="include :: ztree-css" /> <th:block th:include="include :: ztree-css" />
</head> </head>
<style> <style>
@ -40,7 +40,7 @@
}; };
$.tree.init(options); $.tree.init(options);
}); });
function zOnClick(event, treeId, treeNode) { function zOnClick(event, treeId, treeNode) {
var treeId = treeNode.id; var treeId = treeNode.id;
var treeName = treeNode.name; var treeName = treeNode.name;

Loading…
Cancel
Save