d9dc2536cb95323fd2b146aba86ad55b419270c3.svn-base 3.26 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>s_reg_base_c管理</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/sRegBaseC/">s_reg_base_c列表</a></li>
		<shiro:hasPermission name="sumdata:datatable:sRegBaseC:edit"><li><a href="${ctx}/sumdata/datatable/sRegBaseC/form">s_reg_base_c添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="sRegBaseC" action="${ctx}/sumdata/datatable/sRegBaseC/" 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>ch</th>
				<th>zrzh</th>
				<th>ysdm</th>
				<th>sjc</th>
				<th>myc</th>
				<th>zid</th>
				<th>isnegativelayer</th>
				<th>isaudit</th>
				<th>update_date</th>
				<th>remarks</th>
				<th>cjzmj</th>
				<th>ctnjzmj</th>
				<th>cytmj</th>
				<th>cgyjzmj</th>
				<th>cftjzmj</th>
				<th>cbqmj</th>
				<th>cg</th>
				<th>sptymj</th>
				<shiro:hasPermission name="sumdata:datatable:sRegBaseC:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="sRegBaseC">
			<tr>
				<td><a href="${ctx}/sumdata/datatable/sRegBaseC/form?id=${sRegBaseC.id}">
					${sRegBaseC.sareaCode}
				</a></td>
				<td>
					${sRegBaseC.ch}
				</td>
				<td>
					${sRegBaseC.zrzh}
				</td>
				<td>
					${sRegBaseC.ysdm}
				</td>
				<td>
					${sRegBaseC.sjc}
				</td>
				<td>
					${sRegBaseC.myc}
				</td>
				<td>
					${sRegBaseC.zid}
				</td>
				<td>
					${sRegBaseC.isnegativelayer}
				</td>
				<td>
					${sRegBaseC.isaudit}
				</td>
				<td>
					<fmt:formatDate value="${sRegBaseC.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${sRegBaseC.remarks}
				</td>
				<td>
					${sRegBaseC.cjzmj}
				</td>
				<td>
					${sRegBaseC.ctnjzmj}
				</td>
				<td>
					${sRegBaseC.cytmj}
				</td>
				<td>
					${sRegBaseC.cgyjzmj}
				</td>
				<td>
					${sRegBaseC.cftjzmj}
				</td>
				<td>
					${sRegBaseC.cbqmj}
				</td>
				<td>
					${sRegBaseC.cg}
				</td>
				<td>
					${sRegBaseC.sptymj}
				</td>
				<shiro:hasPermission name="sumdata:datatable:sRegBaseC:edit"><td>
    				<a href="${ctx}/sumdata/datatable/sRegBaseC/form?id=${sRegBaseC.id}">修改</a>
					<a href="${ctx}/sumdata/datatable/sRegBaseC/delete?id=${sRegBaseC.id}" onclick="return confirmx('确认要删除该s_reg_base_c吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>