d94c355ff9ea0198c53e5893ec4ab4279a32ea82.svn-base 3.62 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/regBusFz/list?ywh=${ywh}">发证信息列表</a></li>
		<c:if test="${empty LISTVIEWS}">
		<c:if test="${ised ne '1'}">
			<shiro:hasPermission name="reg:bus:regBusFz:edit">
			<li><a href="${ctx}/reg/bus/regBusFz/form?ywh=${ywh}&YSDM=2002040100">发证信息添加</a></li>
			</shiro:hasPermission>
		</c:if>
		</c:if>
		<%--
		<shiro:hasPermission name="reg:bus:regBusFz:edit"><li><a href="${ctx}/reg/bus/regBusFz/form">发证信息添加</a></li></shiro:hasPermission>
		--%>
	</ul>
	<form:form id="searchForm" modelAttribute="regBusFz" action="${ctx}/reg/bus/regBusFz/list?LISTVIEWS=1&ywh=${ywh}" 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="fzmc" 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>
				<th>领证人证件号</th>
				<th>领证人电话</th>
				<th>领证人地址</th>
				<th>领证人邮编</th>
				<th>备注</th>
				<c:if test="${empty LISTVIEWS}">
				<shiro:hasPermission name="reg:bus:regBusFz:edit"><th>操作</th></shiro:hasPermission>
				</c:if>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusFz">
			<tr>
				<td><a href="${ctx}/reg/bus/regBusFz/form?id=${regBusFz.id}&VIEWS=1">
					${regBusFz.ywh}
				</a></td>
				<td>
					${regBusFz.ysdm}
				</td>
				<td>
					${regBusFz.fzry}
				</td>
				<td>
					<fmt:formatDate value="${regBusFz.fzsj}" pattern="yyyy-MM-dd"/>
				</td>
				<td>
					${regBusFz.fzmc}
				</td>
				<td>
					${regBusFz.fzsl}
				</td>
				<td>
					${regBusFz.hfzsh}
				</td>
				<td>
					${regBusFz.lzrxm}
				</td>
				<td>
					${fns:getDictLabel(regBusFz.lzrzjlb, 'reg_bus_zjlx', '')}
				</td>
				<td>
					${regBusFz.lzrzjh}
				</td>
				<td>
					${regBusFz.lzrdh}
				</td>
				<td>
					${regBusFz.lzrdz}
				</td>
				<td>
					${regBusFz.lzryb}
				</td>
				<td>
					${regBusFz.bz}
				</td>
				<c:if test="${empty LISTVIEWS}">
				<shiro:hasPermission name="reg:bus:regBusFz:edit"><td>
    				<a href="${ctx}/reg/bus/regBusFz/form?id=${regBusFz.id}">修改</a>
					<a href="${ctx}/reg/bus/regBusFz/delete?id=${regBusFz.id}" onclick="return confirmx('确认要删除该发证信息吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
				</c:if>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>