83afc5e0874a83d847812120155580f5f71af427.svn-base 3.66 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}/sumdata/datatable/sRegBusGd/">s_reg_bus_gd列表</a></li>
		<shiro:hasPermission name="sumdata:datatable:sRegBusGd:edit"><li><a href="${ctx}/sumdata/datatable/sRegBusGd/form">s_reg_bus_gd添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="sRegBusGd" action="${ctx}/sumdata/datatable/sRegBusGd/" 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>所属县区</th>
				<th>ywh</th>
				<th>ysdm</th>
				<th>djdl</th>
				<th>djxl</th>
				<th>zl</th>
				<th>qzhm</th>
				<th>jzh</th>
				<th>wjjs</th>
				<th>zys</th>
				<th>gdry</th>
				<th>gdsj</th>
				<th>bz</th>
				<th>gh</th>
				<th>lh</th>
				<th>ch</th>
				<th>wh</th>
				<th>sh</th>
				<th>dawz</th>
				<th>dawzsxh</th>
				<th>qllb</th>
				<th>proc_ins_id</th>
				<th>create_by</th>
				<th>update_date</th>
				<th>remarks</th>
				<shiro:hasPermission name="sumdata:datatable:sRegBusGd:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="sRegBusGd">
			<tr>
				<td><a href="${ctx}/sumdata/datatable/sRegBusGd/form?id=${sRegBusGd.id}">
					${fns:getDictLabel(sRegBusGd.sareaCode, 'reg_bus_xq', '')}
				</a></td>
				<td>
					${sRegBusGd.ywh}
				</td>
				<td>
					${sRegBusGd.ysdm}
				</td>
				<td>
					${sRegBusGd.djdl}
				</td>
				<td>
					${sRegBusGd.djxl}
				</td>
				<td>
					${sRegBusGd.zl}
				</td>
				<td>
					${sRegBusGd.qzhm}
				</td>
				<td>
					${sRegBusGd.jzh}
				</td>
				<td>
					${sRegBusGd.wjjs}
				</td>
				<td>
					${sRegBusGd.zys}
				</td>
				<td>
					${sRegBusGd.gdry}
				</td>
				<td>
					<fmt:formatDate value="${sRegBusGd.gdsj}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBusGd.bz}
				</td>
				<td>
					${sRegBusGd.gh}
				</td>
				<td>
					${sRegBusGd.lh}
				</td>
				<td>
					${sRegBusGd.ch}
				</td>
				<td>
					${sRegBusGd.wh}
				</td>
				<td>
					${sRegBusGd.sh}
				</td>
				<td>
					${sRegBusGd.dawz}
				</td>
				<td>
					${sRegBusGd.dawzsxh}
				</td>
				<td>
					${sRegBusGd.qllb}
				</td>
				<td>
					${sRegBusGd.procInsId}
				</td>
				<td>
					${sRegBusGd.createBy.id}
				</td>
				<td>
					<fmt:formatDate value="${sRegBusGd.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBusGd.remarks}
				</td>
				<shiro:hasPermission name="sumdata:datatable:sRegBusGd:edit"><td>
    				<a href="${ctx}/sumdata/datatable/sRegBusGd/form?id=${sRegBusGd.id}">修改</a>
					<a href="${ctx}/sumdata/datatable/sRegBusGd/delete?id=${sRegBusGd.id}" onclick="return confirmx('确认要删除该s_reg_bus_gd吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>