汇联通执法队后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

manage.jsp 5.0KB

3 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <!DOCTYPE html>
  2. <%@ page contentType="text/html;charset=utf-8"%>
  3. <!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
  4. <!--[if !IE]><!-->
  5. <html lang="en">
  6. <!--<![endif]-->
  7. <head>
  8. <script src="${rootUrl }plugins/datepicker/WdatePicker.js" type="text/javascript"></script>
  9. <%@ include file="/WEB-INF/jsp/assets.jsp" %>
  10. <script type="text/javascript">
  11. $(function(){
  12. $("#myManage").taiji({
  13. enableAclCheck:true,
  14. }).on("taijiEditSuccess",function(event,result){
  15. //$(".taiji_search_submit").click();
  16. });
  17. $("#addBtn").click(function(){
  18. $(this).showModal({size:"modal-lg",backdrop:false,data:{loginName:"sample"}});
  19. return false;
  20. });
  21. $("#myManage select").change(function(){
  22. $(".taiji_search_submit").click();
  23. });
  24. });
  25. </script>
  26. </head>
  27. <body >
  28. <div id="page-loader" class="fade in"><span class="spinner"></span></div>
  29. <!-- begin #page-container -->
  30. <div id="page-container" class="fade">
  31. <!-- begin #header -->
  32. <%@ include file="/WEB-INF/jsp/header.jsp" %>
  33. <!-- end #header -->
  34. <!-- begin #sidebar -->
  35. <%@ include file="/WEB-INF/jsp/sidebar.jsp" %>
  36. <!-- end #sidebar -->
  37. <!-- begin #content -->
  38. <div id="content" class="content">
  39. <ol class="breadcrumb pull-right">
  40. </ol>
  41. <!-- begin row -->
  42. <div class="row">
  43. <!-- begin col-12 -->
  44. <div class="col-md-12">
  45. <!-- begin panel -->
  46. <div id="myManage" class="panel panel-inverse">
  47. <div class="panel-heading" style="background-color:#C2C2C2">
  48. <div class="panel-heading-btn">
  49. <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
  50. <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-success" data-click="panel-reload"><i class="fa fa-repeat"></i></a>
  51. <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-warning" data-click="panel-collapse"><i class="fa fa-minus"></i></a>
  52. <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-danger" data-click="panel-remove"><i class="fa fa-times"></i></a>
  53. </div>
  54. <h4 class="panel-title" style="color:black;font-size:16px;" >模板管理</h4>
  55. </div>
  56. <div class="panel-toolbar ">
  57. <a href="${rootUrl }app/template/add" class="taiji_modal taiji_acl btn btn-success m-5"><i class="fa fa-plus m-r-5"></i>添加</a>
  58. </div>
  59. <div class="panel-body">
  60. <form:form cssClass="taiji_search_form form-inline m-t-5 " modelAttribute="queryModel" id="listForm" name="listForm" action="${rootUrl}app/template/manage" method="post">
  61. <div class="form-group m-5">
  62. <div class="form-group m-5">
  63. <form:input path="name" size="25" maxlength="50" placeholder="模板名称" cssClass="form-control"/>
  64. </div>
  65. <div class="form-group m-5">
  66. <label class="control-label">每页条数</label>
  67. <form:select path="pageSize" cssClass="selectpicker" data-style="btn-white" data-width="80px">
  68. <form:option value="2">2</form:option>
  69. <form:option value="10">10</form:option>
  70. <form:option value="16">16</form:option>
  71. <form:option value="20">20</form:option>
  72. <form:option value="50">50</form:option>
  73. <form:option value="100">100</form:option>
  74. </form:select>
  75. </div>
  76. <button class="taiji_search_submit btn btn-md btn-success m-r-5" type="button" ><i class="fa fa-search m-r-10 "></i>查询</button>
  77. <button class="taiji_search_reset btn btn-md btn-default" type="button"><i class="fa fa-refresh m-r-10 "></i>重置</button>
  78. </div>
  79. </form:form>
  80. <div class="taiji_search_result taiji_table_float table-responsive">
  81. <table class="table table-striped table-bordered table-hover">
  82. <thead>
  83. <tr>
  84. <th>项目名称</th>
  85. <th>模板名称</th>
  86. <th>模板路经</th>
  87. <th width="140px" align="center">操作</th>
  88. </tr>
  89. </thead>
  90. <tbody>
  91. </tbody>
  92. </table>
  93. </div>
  94. </div>
  95. <div class="panel-footer text-right">
  96. <div class="pageturn taiji_pager">
  97. </div>
  98. </div>
  99. </div>
  100. <!-- end panel -->
  101. </div>
  102. <!-- end col-12 -->
  103. </div>
  104. <!-- end row -->
  105. </div>
  106. <!-- end #content -->
  107. <!-- begin scroll to top btn -->
  108. <a href="javascript:;" class="btn btn-icon btn-circle btn-success btn-scroll-to-top fade" data-click="scroll-top"><i class="fa fa-angle-up"></i></a>
  109. <!-- end scroll to top btn -->
  110. </div>
  111. <!-- end page container -->
  112. </body>
  113. </html>