6629ebf955b08f9a0b0c06d0516cce790a0a94e5.svn-base 3.17 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/regBusYwr/">新义务人信息列表</a></li>
		<shiro:hasPermission name="reg:bus:regBusYwr:edit"><li><a href="${ctx}/reg/bus/regBusYwr/form">新义务人信息添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="regBusYwr" action="${ctx}/reg/bus/regBusYwr/" 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="qlrmc" htmlEscape="false" maxlength="100" class="input-medium"/>
			</li>
			<li><label>权利人编码:</label>
				<form:input path="pcode" htmlEscape="false" maxlength="10" class="input-medium"/>
			</li>
			<li><label>证件号:</label>
				<form:input path="zjh" 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:regBusYwr:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusYwr">
			<tr>
				<td><a href="${ctx}/reg/bus/regBusYwr/form?id=${regBusYwr.id}">
					${regBusYwr.ywh}
				</a></td>
				<td>
					${regBusYwr.sxh}
				</td>
				<td>
					${regBusYwr.qlrmc}
				</td>
				<td>
					${regBusYwr.pcode}
				</td>
				<td>
					${fns:getDictLabel(regBusYwr.zjzl, 'reg_bus_zjlx', '')}
				</td>
				<td>
					${regBusYwr.zjh}
				</td>
				<td>
					${regBusYwr.fzjg}
				</td>
				<td>
					<fmt:formatDate value="${regBusYwr.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${regBusYwr.remarks}
				</td>
				<shiro:hasPermission name="reg:bus:regBusYwr:edit"><td>
    				<a href="${ctx}/reg/bus/regBusYwr/form?id=${regBusYwr.id}">修改</a>
					<a href="${ctx}/reg/bus/regBusYwr/delete?id=${regBusYwr.id}" onclick="return confirmx('确认要删除该新义务人信息吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>