a50b9bd4231ef8ef262995b601bb74f4a03953fc.svn-base 3.24 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>s_reg_bus_fz管理</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}/sumdata/datatable/sRegBusFz/">s_reg_bus_fz列表</a></li>
		<shiro:hasPermission name="sumdata:datatable:sRegBusFz:edit"><li><a href="${ctx}/sumdata/datatable/sRegBusFz/form">s_reg_bus_fz添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="sRegBusFz" action="${ctx}/sumdata/datatable/sRegBusFz/" 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 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>s_area_code</th>
				<th>ywh</th>
				<th>ysdm</th>
				<th>fzry</th>
				<th>fzsj</th>
				<th>fzmc</th>
				<th>fzsl</th>
				<th>lzrxm</th>
				<th>lzrzjlb</th>
				<th>lzrzjh</th>
				<th>lzrdh</th>
				<th>lzrdz</th>
				<th>lzryb</th>
				<th>bz</th>
				<th>proc_ins_id</th>
				<th>update_date</th>
				<th>remarks</th>
				<th>hfzsh</th>
				<shiro:hasPermission name="sumdata:datatable:sRegBusFz:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="sRegBusFz">
			<tr>
				<td><a href="${ctx}/sumdata/datatable/sRegBusFz/form?id=${sRegBusFz.id}">
					${sRegBusFz.sareaCode}
				</a></td>
				<td>
					${sRegBusFz.ywh}
				</td>
				<td>
					${sRegBusFz.ysdm}
				</td>
				<td>
					${sRegBusFz.fzry}
				</td>
				<td>
					<fmt:formatDate value="${sRegBusFz.fzsj}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBusFz.fzmc}
				</td>
				<td>
					${sRegBusFz.fzsl}
				</td>
				<td>
					${sRegBusFz.lzrxm}
				</td>
				<td>
					${sRegBusFz.lzrzjlb}
				</td>
				<td>
					${sRegBusFz.lzrzjh}
				</td>
				<td>
					${sRegBusFz.lzrdh}
				</td>
				<td>
					${sRegBusFz.lzrdz}
				</td>
				<td>
					${sRegBusFz.lzryb}
				</td>
				<td>
					${sRegBusFz.bz}
				</td>
				<td>
					${sRegBusFz.procInsId}
				</td>
				<td>
					<fmt:formatDate value="${sRegBusFz.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBusFz.remarks}
				</td>
				<td>
					${sRegBusFz.hfzsh}
				</td>
				<shiro:hasPermission name="sumdata:datatable:sRegBusFz:edit"><td>
    				<a href="${ctx}/sumdata/datatable/sRegBusFz/form?id=${sRegBusFz.id}">修改</a>
					<a href="${ctx}/sumdata/datatable/sRegBusFz/delete?id=${sRegBusFz.id}" onclick="return confirmx('确认要删除该s_reg_bus_fz吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>