flowInsDataConfList.jsp 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <%@ page language="java" contentType="text/html; charset=gbk"
  2. pageEncoding="gbk"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gbk">
  7. <meta name="renderer" content="ie-stand">
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge;">
  9. <meta http-equiv="PRAGMA" content="no-cache">
  10. <meta http-equiv="Cache-Control" content="no-cache">
  11. <meta http-equiv="Expires" content="0">
  12. <%@ include file="/yw/bpm/configuration/common.jsp"%>
  13. <link href="${pageContext.request.contextPath }/yw/bpm/configuration/configuration.css" rel="stylesheet"></link>
  14. <script type="text/javascript" src="/shares/js/yw/bpm/bootstrap/jquery-validation-1.11.1/dist/jquery.validate.js"></script>
  15. <script type="text/javascript" src="/shares/js/yw/bpm/bootstrap/jquery-validation-1.11.1/localization/messages_zh.js"></script>
  16. <script type="text/javascript" src="/shares/js/yw/bpm/bootstrap/esimakin-twbs-pagination/jquery.twbsPagination.js"></script>
  17. <script type="text/javascript" src="${pageContext.request.contextPath }/yw/bpm/datacenter/js/flowInsDataConfList.js"></script>
  18. <title>流程实例记录列表</title>
  19. <script type="text/javascript">
  20. var contextPath = "${pageContext.request.contextPath }";
  21. </script>
  22. </head>
  23. <body>
  24. <form action="" id="iform" class="form-horizontal">
  25. <div class="form-group col-sm-3">
  26. <label class="col-sm-5 control-label">记录名称</label>
  27. <div class="col-sm-7">
  28. <input type="text" class="form-control" id="dataName" name="dataName">
  29. </div>
  30. </div>
  31. <div class="form-group col-sm-3">
  32. <button type="button" class="btn btn-default btn-sm" onclick="search('bpmFlowInsDataConfAction.do', '#iform');">查询</button>
  33. <button type="button" class="btn btn-default btn-sm" onclick="searchAll('bpmFlowInsDataConfAction.do', '#iform');">查询全部</button>
  34. </div>
  35. <div class="container-fluid" style="padding:0px 30px 0px 30px;">
  36. <table class="table table-hover table-striped">
  37. <thead>
  38. <tr>
  39. <th style="width: 20%;">记录名称</th>
  40. <th style="width: 20%;">关联流程
  41. </th>
  42. <th style="width: 25%;">记录标识
  43. </th>
  44. <!-- <th style="width: 10%;">流程状态 -->
  45. <!-- </th> -->
  46. <th style="width: 25%;">#
  47. </th>
  48. </tr>
  49. </thead>
  50. <tbody>
  51. </tbody>
  52. </table>
  53. </div>
  54. <div class="text-center">
  55. <div class="pagination"></div>
  56. </div>
  57. <input type="hidden" id="p" name="p" value="1">
  58. <input type="hidden" id="pSize" name="pSize" value="10">
  59. <input type="hidden" id="task" name="task" value="list">
  60. </form>
  61. </body>
  62. </html>