testTree1List.jsp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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="testTree1List.js" %>
  8. </head>
  9. <body>
  10. <div class="wrapper wrapper-content">
  11. <div class="panel panel-primary">
  12. <div class="panel-heading">
  13. <h3 class="panel-title">机构列表 </h3>
  14. </div>
  15. <div class="panel-body">
  16. <!-- 工具栏 -->
  17. <div class="row">
  18. <div class="col-sm-12">
  19. <div class="pull-left treetable-bar">
  20. <shiro:hasPermission name="test:tree:dialog:testTree1:add">
  21. <a id="add" class="btn btn-primary" onclick="jp.openSaveDialog('新建机构', '${ctx}/test/tree/dialog/testTree1/form','800px', '500px')"><i class="glyphicon glyphicon-plus"></i> 新建</a><!-- 增加按钮 -->
  22. </shiro:hasPermission>
  23. <button class="btn btn-default" data-toggle="tooltip" data-placement="left" onclick="refresh()" title="刷新"><i class="glyphicon glyphicon-repeat"></i> 刷新</button>
  24. </div>
  25. </div>
  26. </div>
  27. <table id="testTree1TreeTable" class="table table-hover">
  28. <thead>
  29. <tr>
  30. <th>名称</th>
  31. <th>备注信息</th>
  32. <th>操作</th>
  33. </tr>
  34. </thead>
  35. <tbody id="testTree1TreeTableList"></tbody>
  36. </table>
  37. <br/>
  38. </div>
  39. </div>
  40. </div>
  41. </body>
  42. </html>