123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>用户管理</title>
- <meta name="decorator" content="ani"/>
- <%@ include file="/webpage/include/bootstraptable.jsp"%>
- <link href="${ctxStatic}/plugin/bootstrapTree/bootstrap-treeview.css" rel="stylesheet" type="text/css"/>
- <script src="${ctxStatic}/plugin/bootstrapTree/bootstrap-treeview.js" type="text/javascript"></script>
- <%@ include file="userIndex.js"%>
- </head>
- <body>
- <div class="wrapper wrapper-content">
- <div class="panel panel-primary">
- <div class="panel-heading">
- <h3 class="panel-title">用户列表</h3>
- </div>
- <div class="panel-body">
- <div class="row">
- <div class="col-sm-3 col-md-2" >
- <div id="jstree"></div>
- </div>
- <div class="col-sm-9 col-md-10 animated fadeInRight">
- <!-- 搜索框-->
- <div id="search-collapse" class="collapse">
- <div class="accordion-inner">
- <form id="searchForm" class="form form-horizontal well clearfix" >
- <div class="col-sm-4">
- <label class="label-item single-overflow pull-left" title="登录名:">登录名:</label>
- <input type="text" name="loginName" maxlength="100" class=" form-control"/>
- </div>
- <div class="col-sm-4">
- <label class="label-item single-overflow pull-left" title="姓名:">姓名:</label>
- <input type="text" name="name" maxlength="100" class=" form-control"/>
- </div>
- <div class="col-sm-4">
- <label class="label-item single-overflow pull-left" title="公司:">归属市:</label>
- <sys:treeselect id="company" name="company.id"
- title="公司" url="/sys/office/treeData?type=1" cssClass=" form-control" allowClear="true"/>
- </div>
- <div class="col-sm-4">
- <label class="label-item single-overflow pull-left" title="员工:">归属区市县:</label>
- <sys:treeselect id="office" name="office.id"
- title="部门" url="/sys/office/treeData?type=2" cssClass=" form-control" allowClear="true" notAllowSelectParent="true"/>
- </div>
- <div class="col-sm-4">
- <div style="margin-top:26px">
- <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
- <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
- </div>
- </div>
- </form>
- </div>
- </div><!-- 搜索框结束 -->
-
- <!-- 工具栏 -->
- <div id="toolbar">
-
- <shiro:hasPermission name="sys:user:add">
- <a id="add" class="btn btn-primary" onclick="jp.openSaveDialog('新建用户', '${ctx}/sys/user/form','800px', '680px')"><i class="glyphicon glyphicon-plus"></i> 新建</a>
- </shiro:hasPermission>
- <shiro:hasPermission name="sys:user:edit">
- <button id="edit" class="btn btn-success" disabled onclick="edit()">
- <i class="glyphicon glyphicon-edit"></i> 修改
- </button>
- </shiro:hasPermission>
- <shiro:hasPermission name="sys:user:del">
- <button id="remove" class="btn btn-danger" disabled onclick="deleteAll()">
- <i class="glyphicon glyphicon-remove"></i> 删除
- </button>
- </shiro:hasPermission>
- <shiro:hasPermission name="sys:user:import">
- <button id="btnImport" class="btn btn-info"><i class="fa fa-folder-open-o"></i> 导入</button>
- <div id="importBox" class="hide">
- <form id="importForm" action="${ctx}/sys/user/import" method="post" enctype="multipart/form-data"
- style="padding-left:20px;text-align:center;" ><br/>
- <input id="uploadFile" name="file" type="file" style="width:330px"/>导入文件不能超过5M,仅允许导入“xls”或“xlsx”格式文件!<br/>
- </form>
- </div>
- </shiro:hasPermission>
- <shiro:hasPermission name="sys:user:export">
- <a id="export" class="btn btn-warning" href="${ctx}/sys/user/export"><i class="fa fa-file-excel-o"></i> 导出</a>
- </shiro:hasPermission>
- </div><!-- 工具栏结束 -->
-
-
- <!-- 表格 -->
- <table id="table"
- data-toolbar="#toolbar">
- </table>
-
- <!-- context menu -->
- <ul id="context-menu" class="dropdown-menu">
- <li data-item="edit"><a>编辑</a></li>
- <li data-item="delete"><a>删除</a></li>
- <li data-item="cancel"><a>取消</a></li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|