areaList.jsp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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="areaList.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="sys:community:add">
  21. <a id="add" class="btn btn-primary" onclick="jp.openSaveDialog('新增街道社区', '${ctx}/sys/community/form','800px', '500px',$treeTable)" ><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="treeTable" class="table table-hover">
  28. <thead>
  29. <tr>
  30. <th>街道社区名称</th>
  31. <th>编码</th>
  32. <th>类型</th>
  33. <th>备注</th>
  34. <th>操作</th>
  35. </tr>
  36. </thead>
  37. <tbody>
  38. </tbody>
  39. </table>
  40. <br/>
  41. </div>
  42. </div>
  43. </div>
  44. </body>
  45. </html>