taskProcessList.jsp 1.7 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 http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="decorator" content="ani"/>
  8. <%@ include file="/webpage/include/bootstraptable.jsp"%>
  9. <%@include file="/webpage/include/treeview.jsp" %>
  10. <%@include file="taskProcessList.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. <!-- 搜索 -->
  20. <div id="search-collapse" class="collapse">
  21. <div class="accordion-inner">
  22. <form:form id="searchForm" class="form form-horizontal well clearfix">
  23. <div class="col-xs-12 col-sm-6 col-md-4">
  24. <label class="label-item single-overflow pull-left" title="流程分类:">流程分类:</label>
  25. <select id="category" name="category" class="form-control">
  26. <option value="">全部分类</option>
  27. <c:forEach items="${fns:getDictList('act_category')}" var="dict">
  28. <option value="${dict.value}" ${dict.value==category?'selected':''}>${dict.label}</option>
  29. </c:forEach>
  30. </select>
  31. </div>
  32. <div class="col-xs-12 col-sm-6 col-md-4">
  33. <div style="margin-top:26px">
  34. <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
  35. <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
  36. </div>
  37. </div>
  38. </form:form>
  39. </div>
  40. </div>
  41. <!-- 表格 -->
  42. <table id="processTable" ></table>
  43. </div>
  44. </div>
  45. </div>
  46. </body>
  47. </html>