privilegeProcdef.jsp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>用户管理</title>
  6. <meta name="decorator" content="ani"/>
  7. <%@ include file="/webpage/include/bootstraptable.jsp"%>
  8. <link href="${ctxStatic}/plugin/bootstrapTree/bootstrap-treeview.css" rel="stylesheet" type="text/css"/>
  9. <script src="${ctxStatic}/plugin/bootstrapTree/bootstrap-treeview.js" type="text/javascript"></script>
  10. <%@ include file="privilegeProcdef.js"%>
  11. </head>
  12. <body>
  13. <div class="wrapper wrapper-content">
  14. <div class="panel panel-primary">
  15. <div class="panel-heading">
  16. <h3 class="panel-title">用户列表</h3>
  17. </div>
  18. <div class="panel-body">
  19. <div class="row">
  20. <form:form id="privilegePre" modelAttribute="privilegePre" class="form-horizontal">
  21. <form:hidden path="uid"/>
  22. </form:form>
  23. <%--<!-- 搜索框-->
  24. <div id="search-collapse" class="collapse">
  25. <div class="accordion-inner">
  26. <form id="searchForm" class="form form-horizontal well clearfix" >
  27. <div class="col-sm-4">
  28. <label class="label-item single-overflow pull-left" title="登录名:">登录名:</label>
  29. <input type="text" name="loginName" maxlength="100" class=" form-control"/>
  30. </div>
  31. <div class="col-sm-4">
  32. <label class="label-item single-overflow pull-left" title="姓名:">姓名:</label>
  33. <input type="text" name="name" maxlength="100" class=" form-control"/>
  34. </div>
  35. <div class="col-sm-4">
  36. <div style="margin-top:26px">
  37. <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
  38. <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
  39. </div>
  40. </div>
  41. </form>
  42. </div>
  43. </div><!-- 搜索框结束 -->--%>
  44. <!-- 工具栏 -->
  45. <div id="toolbar">
  46. <button id="add" class="btn btn-success" onclick="add()">
  47. <i class="glyphicon glyphicon-edit"></i> 添加
  48. </button>
  49. </div><!-- 工具栏结束 -->
  50. <!-- 表格 -->
  51. <table id="table" data-toolbar="#toolbar">
  52. </table>
  53. <!-- context menu -->
  54. <ul id="context-menu" class="dropdown-menu">
  55. <li data-item="edit"><a>编辑</a></li>
  56. <li data-item="delete"><a>删除</a></li>
  57. <li data-item="cancel"><a>取消</a></li>
  58. </ul>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </body>
  64. </html>