fa483d3307b74d431f33d5e30138db5327589e38.svn-base 2.94 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>审核信息管理</title>
	<meta name="decorator" content="default"/>
	<script type="text/javascript">
		$(document).ready(function() {
			
		});
		function page(n,s){
			$("#pageNo").val(n);
			$("#pageSize").val(s);
			$("#searchForm").submit();
        	return false;
        }
	</script>
</head>
<body>
	<ul class="nav nav-tabs">
		<li class="active"><a href="${ctx}/reg/bus/regBusSh/">审核信息列表</a></li>
		<shiro:hasPermission name="reg:bus:regBusSh:edit"><li><a href="${ctx}/reg/bus/regBusSh/form">审核信息添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="regBusSh" action="${ctx}/reg/bus/regBusSh/" method="post" class="breadcrumb form-search">
		<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
		<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
		<ul class="ul-form">
			<li><label>业务号:</label>
				<form:input path="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
			</li>
			<li><label>审核人员姓名:</label>
				<form:input path="shryxm" htmlEscape="false" maxlength="50" class="input-medium"/>
			</li>
			<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
			<li class="clearfix"></li>
		</ul>
	</form:form>
	<sys:message content="${message}"/>
	<table id="contentTable" class="table table-striped table-bordered table-condensed">
		<thead>
			<tr>
				<th>业务号</th>
				<th>要素代码</th>
				<th>节点名称</th>
				<th>顺序号</th>
				<th>审核人员姓名</th>
				<th>审核开始时间</th>
				<th>审核结束时间</th>
				<th>审核意见</th>
				<th>操作结果</th>
				<shiro:hasPermission name="reg:bus:regBusSh:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusSh">
			<tr>
				<td><a href="${ctx}/reg/bus/regBusSh/form?id=${regBusSh.id}&VIEWS=1">
					${regBusSh.ywh}
				</a></td>
				<td>
					${regBusSh.ysdm}
				</td>
				<td>
					${regBusSh.jdmc}
				</td>
				<td>
					${regBusSh.sxh}
				</td>
				<td>
					${regBusSh.shryxm}
				</td>
				<td>
					<fmt:formatDate value="${regBusSh.shkssj}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					<fmt:formatDate value="${regBusSh.shjssj}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${regBusSh.shyj}
				</td>
				<td>
					${fns:getDictLabel(regBusSh.czjg, 'reg_bus_shyjczjg', '')}
				</td>
				<shiro:hasPermission name="reg:bus:regBusSh:edit"><td>
    				<a href="${ctx}/reg/bus/regBusSh/form?id=${regBusSh.id}">修改</a>
					<a href="${ctx}/reg/bus/regBusSh/delete?id=${regBusSh.id}" onclick="return confirmx('确认要删除该审核信息吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>