2018-04-23 00:00:29 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"
|
|
|
|
xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<head th:include="include :: header"></head>
|
|
|
|
<link href="/ajax/libs/jquery-layout/jquery.layout-latest.css" rel="stylesheet">
|
|
|
|
<link href="/ajax/libs/jquery-ztree/3.5/css/metro/zTreeStyle.css" rel="stylesheet">
|
|
|
|
<link href="/ruoyi/css/RuoYi.css" rel="stylesheet"/>
|
|
|
|
<body class="white-bg">
|
|
|
|
|
|
|
|
<div class="ui-layout-west">
|
|
|
|
<div class="main-content">
|
|
|
|
<div class="box box-main">
|
|
|
|
<div class="box-header">
|
|
|
|
<div class="box-title">
|
|
|
|
<i class="fa icon-grid"></i> 组织机构
|
|
|
|
</div>
|
|
|
|
<div class="box-tools pull-right">
|
2018-04-24 23:51:43 +08:00
|
|
|
<a type="button" class="btn btn-box-tool menuItem" href="#" onclick="dept()" title="管理机构"><i class="fa fa-edit"></i></a>
|
2018-04-23 00:00:29 +08:00
|
|
|
<button type="button" class="btn btn-box-tool" id="btnExpand" title="展开" style="display:none;"><i class="fa fa-chevron-up"></i></button>
|
|
|
|
<button type="button" class="btn btn-box-tool" id="btnCollapse" title="折叠"><i class="fa fa-chevron-down"></i></button>
|
|
|
|
<button type="button" class="btn btn-box-tool" id="btnRefresh" title="刷新机构"><i class="fa fa-refresh"></i></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui-layout-content">
|
|
|
|
<div id="tree" class="ztree"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="wrapper wrapper-content ui-layout-center">
|
|
|
|
<div class="btn-group hidden-xs" id="tableToolbar" role="group">
|
|
|
|
<button type="button" class="btn btn-outline btn-default" th:onclick="'javascript:add()'" shiro:hasPermission="system:user:add">
|
|
|
|
<i class="glyphicon glyphicon-plus"></i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-outline btn-default" th:onclick="'javascript:batchRemove()'" shiro:hasPermission="system:user:batchRemove">
|
|
|
|
<i class="glyphicon glyphicon-trash"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="bootstrap-table" data-mobile-responsive="true"
|
|
|
|
data-sort-name="create_time" data-sort-order="desc">
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div th:include="include :: footer"></div>
|
|
|
|
<script type="text/javascript" src="/ruoyi/system/user/user.js"></script>
|
|
|
|
<script src="/ajax/libs/jquery-layout/jquery.layout-latest.js"></script>
|
|
|
|
<script src="/ajax/libs/jquery-ztree/3.5/js/jquery.ztree.all-3.5.js"></script>
|
|
|
|
<script th:inline="javascript" type="text/javascript">
|
|
|
|
var editFlag = [[${@permissionService.hasPermi('system:user:edit')}]];
|
|
|
|
var removeFlag = [[${@permissionService.hasPermi('system:user:remove')}]];
|
|
|
|
var resetPwdFlag = [[${@permissionService.hasPermi('system:user:resetPwd')}]];
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|