144 lines
5.3 KiB
Plaintext
144 lines
5.3 KiB
Plaintext
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|||
|
<%@ include file="/webpage/include/taglib.jsp"%>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<title>ceshi管理</title>
|
|||
|
<meta name="decorator" content="default"/>
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
});
|
|||
|
</script>
|
|||
|
</head>
|
|||
|
<body class="gray-bg">
|
|||
|
<div class="wrapper wrapper-content">
|
|||
|
<div class="ibox">
|
|||
|
<div class="ibox-title">
|
|||
|
<h5>ceshi列表 </h5>
|
|||
|
<div class="ibox-tools">
|
|||
|
<a class="collapse-link">
|
|||
|
<i class="fa fa-chevron-up"></i>
|
|||
|
</a>
|
|||
|
<a class="dropdown-toggle" data-toggle="dropdown" href="###">
|
|||
|
<i class="fa fa-wrench"></i>
|
|||
|
</a>
|
|||
|
<ul class="dropdown-menu dropdown-user">
|
|||
|
<li><a href="###">选项1</a>
|
|||
|
</li>
|
|||
|
<li><a href="###">选项2</a>
|
|||
|
</li>
|
|||
|
</ul>
|
|||
|
<a class="close-link">
|
|||
|
<i class="fa fa-times"></i>
|
|||
|
</a>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="ibox-content">
|
|||
|
<sys:message content="${message}"/>
|
|||
|
|
|||
|
<!--查询条件-->
|
|||
|
<div class="row">
|
|||
|
<div class="col-sm-12">
|
|||
|
<form:form id="searchForm" modelAttribute="ceshi" action="${ctx}/ceshi/ceshi/" method="post" class="form-inline">
|
|||
|
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
|||
|
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
|||
|
<table:sortColumn id="orderBy" name="orderBy" value="${page.orderBy}" callback="sortOrRefresh();"/><!-- 支持排序 -->
|
|||
|
<div class="form-group">
|
|||
|
<span>创建者:</span>
|
|||
|
<form:input path="createBy" htmlEscape="false" maxlength="64" class=" form-control input-sm"/>
|
|||
|
</div>
|
|||
|
</form:form>
|
|||
|
<br/>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<!-- 工具栏 -->
|
|||
|
<div class="row">
|
|||
|
<div class="col-sm-12">
|
|||
|
<div class="pull-left">
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:add">
|
|||
|
<table:addRow url="${ctx}/ceshi/ceshi/form" title="ceshi"></table:addRow><!-- 增加按钮 -->
|
|||
|
</shiro:hasPermission>
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:edit">
|
|||
|
<table:editRow url="${ctx}/ceshi/ceshi/form" title="ceshi" id="contentTable"></table:editRow><!-- 编辑按钮 -->
|
|||
|
</shiro:hasPermission>
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:del">
|
|||
|
<table:delRow url="${ctx}/ceshi/ceshi/deleteAll" id="contentTable"></table:delRow><!-- 删除按钮 -->
|
|||
|
</shiro:hasPermission>
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:import">
|
|||
|
<table:importExcel url="${ctx}/ceshi/ceshi/import"></table:importExcel><!-- 导入按钮 -->
|
|||
|
</shiro:hasPermission>
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:export">
|
|||
|
<table:exportExcel url="${ctx}/ceshi/ceshi/export"></table:exportExcel><!-- 导出按钮 -->
|
|||
|
</shiro:hasPermission>
|
|||
|
<button class="btn btn-white btn-sm " data-toggle="tooltip" data-placement="left" onclick="sortOrRefresh()" title="刷新"><i class="glyphicon glyphicon-repeat"></i> 刷新</button>
|
|||
|
|
|||
|
</div>
|
|||
|
<div class="pull-right">
|
|||
|
<button class="btn btn-primary btn-rounded btn-outline btn-sm " onclick="search()" ><i class="fa fa-search"></i> 查询</button>
|
|||
|
<button class="btn btn-primary btn-rounded btn-outline btn-sm " onclick="resetAll()" ><i class="fa fa-refresh"></i> 重置</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<!-- 表格 -->
|
|||
|
<table id="contentTable" class="table table-striped table-bordered table-hover table-condensed dataTables-example dataTable">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th> <input type="checkbox" class="i-checks"></th>
|
|||
|
<th class="sort-column createBy">创建者</th>
|
|||
|
<th class="sort-column createDate">创建时间</th>
|
|||
|
<th class="sort-column updateBy">更新者</th>
|
|||
|
<th class="sort-column updateDate">更新时间</th>
|
|||
|
<th class="sort-column remarks">备注信息</th>
|
|||
|
<th class="sort-column delFlag">逻辑删除标记(0:显示;1:隐藏)</th>
|
|||
|
<th>操作</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tbody>
|
|||
|
<c:forEach items="${page.list}" var="ceshi">
|
|||
|
<tr>
|
|||
|
<td> <input type="checkbox" id="${ceshi.id}" class="i-checks"></td>
|
|||
|
<td><a href="###" onclick="openDialogView('查看ceshi', '${ctx}/ceshi/ceshi/form?id=${ceshi.id}','800px', '500px')">
|
|||
|
${ceshi.createBy}
|
|||
|
</a></td>
|
|||
|
<td>
|
|||
|
<fmt:formatDate value="${ceshi.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
${ceshi.updateBy}
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<fmt:formatDate value="${ceshi.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
${ceshi.remarks}
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
${fns:getDictLabel(ceshi.delFlag, 'del_flag', '')}
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:view">
|
|||
|
<a href="###" onclick="openDialogView('查看ceshi', '${ctx}/ceshi/ceshi/form?id=${ceshi.id}','800px', '500px')" class="btn btn-info btn-xs" ><i class="fa fa-search-plus"></i> 查看</a>
|
|||
|
</shiro:hasPermission>
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:edit">
|
|||
|
<a href="###" onclick="openDialog('修改ceshi', '${ctx}/ceshi/ceshi/form?id=${ceshi.id}','800px', '500px')" class="btn btn-success btn-xs" ><i class="fa fa-edit"></i> 修改</a>
|
|||
|
</shiro:hasPermission>
|
|||
|
<shiro:hasPermission name="ceshi:ceshi:del">
|
|||
|
<a href="${ctx}/ceshi/ceshi/delete?id=${ceshi.id}" onclick="return confirmx('确认要删除该ceshi吗?', this.href)" class="btn btn-danger btn-xs"><i class="fa fa-trash"></i> 删除</a>
|
|||
|
</shiro:hasPermission>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</c:forEach>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
|
|||
|
<!-- 分页代码 -->
|
|||
|
<table:page page="${page}"></table:page>
|
|||
|
<br/>
|
|||
|
<br/>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|