109519434f44c667f65e13b9400916ab7196e932.svn-base 1.91 KB
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>数据库dml记录管理</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}/reg/base/dmlRecords/">数据库dml记录列表</a></li>
		<shiro:hasPermission name="reg:base:dmlRecords:edit"><li><a href="${ctx}/reg/base/dmlRecords/form">数据库dml记录添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="dmlRecords" action="${ctx}/reg/base/dmlRecords/" 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>
				<shiro:hasPermission name="reg:base:dmlRecords:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="dmlRecords">
			<tr>
				<shiro:hasPermission name="reg:base:dmlRecords:edit"><td>
    				<a href="${ctx}/reg/base/dmlRecords/form?id=${dmlRecords.id}">修改</a>
					<a href="${ctx}/reg/base/dmlRecords/delete?id=${dmlRecords.id}" onclick="return confirmx('确认要删除该数据库dml记录吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>