92 lines
3.3 KiB
Plaintext
92 lines
3.3 KiB
Plaintext
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||
|
|
<!DOCTYPE html >
|
||
|
|
<html lang="en" style="height:100%;">
|
||
|
|
<head>
|
||
|
|
<%@include file="../baseset.jsp" %>
|
||
|
|
<%@include file="../systemset.jsp" %>
|
||
|
|
<link rel="stylesheet" href="${bonuspath}/static/plugins/zTree/3.5/zTreeStyle.css" />
|
||
|
|
<script src="${bonuspath}/static/plugins/zTree/3.5/jquery.ztree.all.min.js"></script>
|
||
|
|
<style type="text/css">
|
||
|
|
.a{
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
#testReport th{
|
||
|
|
border: solid 1px black;
|
||
|
|
height: 2.5em;
|
||
|
|
line-height: 2.5em;
|
||
|
|
font-size: 1em;
|
||
|
|
}
|
||
|
|
.inp{
|
||
|
|
width:100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.widget-toolbar a{
|
||
|
|
vertical-align:middle;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<body style="height:100%;">
|
||
|
|
<div class="page-content" style="height:100%;">
|
||
|
|
|
||
|
|
<div class="row-fluid" style="height:100%;">
|
||
|
|
<div class="col-xs-12 a" style="width:18%;height:70%;background-color: #cae6e8;">
|
||
|
|
<div style="width:100%;height:2em;line-height: 2em;font-size: 1.4em;" align="center" >
|
||
|
|
组织机构
|
||
|
|
</div>
|
||
|
|
<div class="row">
|
||
|
|
<ul style="margin-left:1.2em;" id="orgTree" class="ztree"></ul>
|
||
|
|
</div>
|
||
|
|
<%@include file="../dialog.jsp" %>
|
||
|
|
</div>
|
||
|
|
<div class="a" style="width:80%;height:100%;margin-left: 1em;">
|
||
|
|
|
||
|
|
<form id="baseForm" class="form-inline" method="POST" onsubmit="return false;">
|
||
|
|
<input type="hidden" id="code" name="code">
|
||
|
|
<input type="hidden" id="parentId">
|
||
|
|
<div class="widget-header widget-header-large" style="padding:10px;">
|
||
|
|
<div class="widget-main customBtn" >
|
||
|
|
<span>关键字搜索:</span><input id="keyWord" type="text" name="keyWord" />
|
||
|
|
<button class="btn btn-success btn-sm" onclick="getbaseList(1)" id="search" title="查询" type="button">查询</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="widget-toolbar customBtn">
|
||
|
|
<shiro:hasPermission name="part:check:add">
|
||
|
|
<a title="新增" onclick="orgForm('add')" class="lrspace3" ><i class='icon-plus-sign color bigger-180'></i></a>
|
||
|
|
</shiro:hasPermission>
|
||
|
|
<shiro:hasPermission name="part:check:view">
|
||
|
|
<a title="查看" onclick="orgForm('view')" class="lrspace3" ><i class='icon-info-sign color bigger-180'></i></a>
|
||
|
|
</shiro:hasPermission>
|
||
|
|
<shiro:hasPermission name="part:check:edit">
|
||
|
|
<a title="编辑" onclick="orgForm('edit')" class="lrspace3" ><i class='icon-edit color bigger-180'></i></a>
|
||
|
|
</shiro:hasPermission>
|
||
|
|
<a title="刷新" id="searchBtn" onclick="getbaseList()" class="lrspace3" ><i class='icon-refresh bigger-180 orange'></i></a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
<div >
|
||
|
|
<table id="cartTable" class="table table-striped table-bordered table-hover" >
|
||
|
|
<thead>
|
||
|
|
<th style="width:5%" class="center">
|
||
|
|
<label><input type="checkbox" class="ace" ><span class="lbl"></span></label>
|
||
|
|
</th>
|
||
|
|
<th style="width:5%" class="center hidden-480">序号</th>
|
||
|
|
<th style="width:10%" class="center">部门编码</th>
|
||
|
|
<th style="width:12%" class="center">部门名称</th>
|
||
|
|
<th style="width:12%" class="center">分管专责</th>
|
||
|
|
<th style="width:9%" class="center">是否启用</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody></tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script src="${bonuspath}/static/js/sys/orgManagement.js?v=1"></script>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|