0c550a3a48d38819e6800618324dbfd2676cfcbe.svn-base 2.91 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>s_reg_bus_sf管理</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/sRegBusSf/">s_reg_bus_sf列表</a></li>
		<shiro:hasPermission name="sumdata:datatable:sRegBusSf:edit"><li><a href="${ctx}/sumdata/datatable/sRegBusSf/form">s_reg_bus_sf添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="sRegBusSf" action="${ctx}/sumdata/datatable/sRegBusSf/" 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>jfry</th>
				<th>jfrq</th>
				<th>sfry</th>
				<th>sfrq</th>
				<th>fff</th>
				<th>sjffr</th>
				<th>sfdw</th>
				<th>update_date</th>
				<th>remarks</th>
				<shiro:hasPermission name="sumdata:datatable:sRegBusSf:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="sRegBusSf">
			<tr>
				<td><a href="${ctx}/sumdata/datatable/sRegBusSf/form?id=${sRegBusSf.id}">
					${sRegBusSf.sareaCode}
				</a></td>
				<td>
					${sRegBusSf.ywh}
				</td>
				<td>
					${sRegBusSf.ysdm}
				</td>
				<td>
					${sRegBusSf.jfry}
				</td>
				<td>
					<fmt:formatDate value="${sRegBusSf.jfrq}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBusSf.sfry}
				</td>
				<td>
					<fmt:formatDate value="${sRegBusSf.sfrq}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBusSf.fff}
				</td>
				<td>
					${sRegBusSf.sjffr}
				</td>
				<td>
					${sRegBusSf.sfdw}
				</td>
				<td>
					<fmt:formatDate value="${sRegBusSf.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBusSf.remarks}
				</td>
				<shiro:hasPermission name="sumdata:datatable:sRegBusSf:edit"><td>
    				<a href="${ctx}/sumdata/datatable/sRegBusSf/form?id=${sRegBusSf.id}">修改</a>
					<a href="${ctx}/sumdata/datatable/sRegBusSf/delete?id=${sRegBusSf.id}" onclick="return confirmx('确认要删除该s_reg_bus_sf吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>