c1e9e60696bc8661138ffb4b2104bdc91325a806.svn-base 3.58 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>s_reg_base_person管理</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/sRegBasePerson/">s_reg_base_person列表</a></li>
		<shiro:hasPermission name="sumdata:datatable:sRegBasePerson:edit"><li><a href="${ctx}/sumdata/datatable/sRegBasePerson/form">s_reg_base_person添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="sRegBasePerson" action="${ctx}/sumdata/datatable/sRegBasePerson/" 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>pcode</th>
				<th>rymc</th>
				<th>zjzl</th>
				<th>zjh</th>
				<th>sshy</th>
				<th>gj</th>
				<th>hjszss</th>
				<th>xb</th>
				<th>dh</th>
				<th>dz</th>
				<th>yb</th>
				<th>gzdw</th>
				<th>dzyj</th>
				<th>rylx</th>
				<th>dlrymc</th>
				<th>dlrydh</th>
				<th>dljg</th>
				<th>bz</th>
				<th>isaudit</th>
				<th>update_date</th>
				<th>remarks</th>
				<shiro:hasPermission name="sumdata:datatable:sRegBasePerson:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="sRegBasePerson">
			<tr>
				<td><a href="${ctx}/sumdata/datatable/sRegBasePerson/form?id=${sRegBasePerson.id}">
					${sRegBasePerson.sareaCode}
				</a></td>
				<td>
					${sRegBasePerson.pcode}
				</td>
				<td>
					${sRegBasePerson.rymc}
				</td>
				<td>
					${sRegBasePerson.zjzl}
				</td>
				<td>
					${sRegBasePerson.zjh}
				</td>
				<td>
					${sRegBasePerson.sshy}
				</td>
				<td>
					${sRegBasePerson.gj}
				</td>
				<td>
					${sRegBasePerson.hjszss}
				</td>
				<td>
					${sRegBasePerson.xb}
				</td>
				<td>
					${sRegBasePerson.dh}
				</td>
				<td>
					${sRegBasePerson.dz}
				</td>
				<td>
					${sRegBasePerson.yb}
				</td>
				<td>
					${sRegBasePerson.gzdw}
				</td>
				<td>
					${sRegBasePerson.dzyj}
				</td>
				<td>
					${sRegBasePerson.rylx}
				</td>
				<td>
					${sRegBasePerson.dlrymc}
				</td>
				<td>
					${sRegBasePerson.dlrydh}
				</td>
				<td>
					${sRegBasePerson.dljg}
				</td>
				<td>
					${sRegBasePerson.bz}
				</td>
				<td>
					${sRegBasePerson.isaudit}
				</td>
				<td>
					<fmt:formatDate value="${sRegBasePerson.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBasePerson.remarks}
				</td>
				<shiro:hasPermission name="sumdata:datatable:sRegBasePerson:edit"><td>
    				<a href="${ctx}/sumdata/datatable/sRegBasePerson/form?id=${sRegBasePerson.id}">修改</a>
					<a href="${ctx}/sumdata/datatable/sRegBasePerson/delete?id=${sRegBasePerson.id}" onclick="return confirmx('确认要删除该s_reg_base_person吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>