170 lines
7.0 KiB
Plaintext
170 lines
7.0 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<%@ include file="/WEB-INF/include/taglib.jsp"%>
|
|
<html>
|
|
<head>
|
|
<title>机构管理</title>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$("#name").focus();
|
|
$("#inputForm").validate({
|
|
submitHandler: function(form){
|
|
loading('正在提交,请稍等...');
|
|
form.submit();
|
|
},
|
|
messages: {
|
|
'area.name': {required: "归属区域必填"}
|
|
},
|
|
errorContainer: "#messageBox",
|
|
errorPlacement: function(error, element) {
|
|
$("#messageBox").text("输入有误,请先更正。");
|
|
if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
|
|
error.appendTo(element.parent().parent());
|
|
} else {
|
|
error.insertAfter(element);
|
|
}
|
|
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<ul class="nav nav-tabs">
|
|
<li><a href="${ctx}/sys/office/list?id=${office.parent.id}&parentIds=${office.parentIds}">机构列表</a></li>
|
|
<li class="active"><a href="${ctx}/sys/office/form?id=${office.id}&parent.id=${office.parent.id}">机构<shiro:hasPermission name="sys:office:edit">${not empty office.id?'修改':'添加'}</shiro:hasPermission><shiro:lacksPermission name="sys:office:edit">查看</shiro:lacksPermission></a></li>
|
|
</ul><br/>
|
|
<form:form id="inputForm" modelAttribute="sysOffice" action="${ctx}/sys/office/saveOrUpdate" method="post" class="form-horizontal">
|
|
<form:hidden path="id"/>
|
|
<sys:message content="${message}"/>
|
|
<div class="control-group">
|
|
<label class="control-label">上级机构:</label>
|
|
<div class="controls">
|
|
<sys:treeselect id="office" name="parent.id" value="${office.parent.id}" labelName="parent.name" labelValue="${office.parent.name}"
|
|
title="机构" url="/sys/office/treeData" extId="${office.id}" cssClass="" allowClear="${office.currentUser.admin}"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">归属区域:</label>
|
|
<div class="controls">
|
|
<sys:treeselect id="area" name="area.id" value="${office.area.id}" labelName="area.name" labelValue="${office.area.name}"
|
|
title="区域" url="/sys/area/treeData" cssClass="required" allowClear="${office.currentUser.admin}"/>
|
|
<font color="red">*</font>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">机构名称:</label>
|
|
<div class="controls">
|
|
<form:input path="name" htmlEscape="false" maxlength="50" class="required"/>
|
|
<span class="help-inline"><font color="red">*</font> </span>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">机构编码:</label>
|
|
<div class="controls">
|
|
<form:input path="code" htmlEscape="false" maxlength="50"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">机构类型:</label>
|
|
<div class="controls">
|
|
<form:select path="type" class="input-medium">
|
|
<form:options items="${fns:getDictList('SYS_OFFICE_TYPE')}" itemLabel="itemValue" itemValue="itemCode" htmlEscape="false"/>
|
|
</form:select>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">机构级别:</label>
|
|
<div class="controls">
|
|
<form:select path="grade" class="input-medium">
|
|
<form:options items="${fns:getDictList('SYS_OFFICE_GRADE')}" itemLabel="itemValue" itemValue="itemCode" htmlEscape="false"/>
|
|
</form:select>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">机构职责分类:</label>
|
|
<div class="controls">
|
|
<form:select path="jobType" class="input-medium">
|
|
<form:options items="${fns:getDictList('SYS_JOB_TYPE')}" itemLabel="itemValue" itemValue="itemCode" htmlEscape="false"/>
|
|
</form:select>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">是否可用:</label>
|
|
<div class="controls">
|
|
<form:select path="useable">
|
|
<form:options items="${fns:getDictList('SYS_YES_NO')}" itemLabel="itemValue" itemValue="itemCode" htmlEscape="false"/>
|
|
</form:select>
|
|
<span class="help-inline">“是”代表此账号允许登陆,“否”则表示此账号不允许登陆</span>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">主负责人:</label>
|
|
<div class="controls">
|
|
<sys:treeselect id="primaryPerson" name="primaryPerson.id" value="${office.primaryPerson.id}" labelName="office.primaryPerson.name" labelValue="${office.primaryPerson.name}"
|
|
title="用户" url="/sys/office/treeData?type=6" allowClear="true" notAllowSelectParent="true"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">副负责人:</label>
|
|
<div class="controls">
|
|
<sys:treeselect id="deputyPerson" name="deputyPerson.id" value="${office.deputyPerson.id}" labelName="office.deputyPerson.name" labelValue="${office.deputyPerson.name}"
|
|
title="用户" url="/sys/office/treeData?type=6" allowClear="true" notAllowSelectParent="true"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">联系地址:</label>
|
|
<div class="controls">
|
|
<form:input path="address" htmlEscape="false" maxlength="50"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">邮政编码:</label>
|
|
<div class="controls">
|
|
<form:input path="zipCode" htmlEscape="false" maxlength="50"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">负责人:</label>
|
|
<div class="controls">
|
|
<form:input path="master" htmlEscape="false" maxlength="50"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">电话:</label>
|
|
<div class="controls">
|
|
<form:input path="phone" htmlEscape="false" maxlength="50"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">传真:</label>
|
|
<div class="controls">
|
|
<form:input path="fax" htmlEscape="false" maxlength="50"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">邮箱:</label>
|
|
<div class="controls">
|
|
<form:input path="email" htmlEscape="false" maxlength="50"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">备注:</label>
|
|
<div class="controls">
|
|
<form:textarea path="remarks" htmlEscape="false" rows="3" maxlength="200" class="input-xlarge"/>
|
|
</div>
|
|
</div>
|
|
<c:if test="${empty office.id}">
|
|
<div class="control-group">
|
|
<label class="control-label">快速添加下级部门:</label>
|
|
<div class="controls">
|
|
<form:checkboxes path="childDeptList" items="${fns:getDictList('SYS_OFFICE_COMMON')}" itemLabel="itemValue" itemValue="itemCode" htmlEscape="false"/>
|
|
</div>
|
|
</div>
|
|
</c:if>
|
|
<div class="form-actions">
|
|
<shiro:hasPermission name="sys:office:edit"><input id="btnSubmit" class="btn btn-primary" type="submit" value="保 存"/> </shiro:hasPermission>
|
|
<input id="btnCancel" class="btn" type="button" value="返 回" onclick="history.go(-1)"/>
|
|
</div>
|
|
</form:form>
|
|
</body>
|
|
</html> |