| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <%@ page language="java" contentType="text/html; charset=gbk"
- pageEncoding="gbk"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gbk">
- <meta name="renderer" content="ie-stand">
- <meta http-equiv="X-UA-Compatible" content="IE=edge;">
- <meta http-equiv="PRAGMA" content="no-cache">
- <meta http-equiv="Cache-Control" content="no-cache">
- <meta http-equiv="Expires" content="0">
- <%@ include file="/yw/bpm/configuration/common.jsp"%>
- <link href="${pageContext.request.contextPath }/yw/bpm/configuration/configuration.css" rel="stylesheet"></link>
- <script type="text/javascript" src="/shares/js/yw/bpm/bootstrap/jquery-validation-1.11.1/dist/jquery.validate.js"></script>
- <script type="text/javascript" src="/shares/js/yw/bpm/bootstrap/jquery-validation-1.11.1/localization/messages_zh.js"></script>
- <script type="text/javascript" src="/shares/js/yw/bpm/bootstrap/esimakin-twbs-pagination/jquery.twbsPagination.js"></script>
- <script type="text/javascript" src="${pageContext.request.contextPath }/yw/bpm/datacenter/js/flowInsDataConfList.js"></script>
- <title>流程实例记录列表</title>
- <script type="text/javascript">
- var contextPath = "${pageContext.request.contextPath }";
- </script>
- </head>
- <body>
- <form action="" id="iform" class="form-horizontal">
- <div class="form-group col-sm-3">
- <label class="col-sm-5 control-label">记录名称</label>
- <div class="col-sm-7">
- <input type="text" class="form-control" id="dataName" name="dataName">
- </div>
- </div>
- <div class="form-group col-sm-3">
- <button type="button" class="btn btn-default btn-sm" onclick="search('bpmFlowInsDataConfAction.do', '#iform');">查询</button>
- <button type="button" class="btn btn-default btn-sm" onclick="searchAll('bpmFlowInsDataConfAction.do', '#iform');">查询全部</button>
- </div>
- <div class="container-fluid" style="padding:0px 30px 0px 30px;">
- <table class="table table-hover table-striped">
- <thead>
- <tr>
- <th style="width: 20%;">记录名称</th>
- <th style="width: 20%;">关联流程
- </th>
- <th style="width: 25%;">记录标识
- </th>
- <!-- <th style="width: 10%;">流程状态 -->
- <!-- </th> -->
- <th style="width: 25%;">#
- </th>
- </tr>
- </thead>
- <tbody>
-
- </tbody>
-
- </table>
- </div>
- <div class="text-center">
- <div class="pagination"></div>
- </div>
- <input type="hidden" id="p" name="p" value="1">
- <input type="hidden" id="pSize" name="pSize" value="10">
- <input type="hidden" id="task" name="task" value="list">
- </form>
- </body>
- </html>
|