<%@ page contentType="text/html;charset=UTF-8" %>
|
<%@ include file="/webpage/include/taglib.jsp"%>
|
<html>
|
<head>
|
<title>课外活动签到管理</title>
|
<meta name="decorator" content="default"/>
|
<script type="text/javascript">
|
$(document).ready(function() {
|
laydate({
|
elem: '#signEnterTime', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
event: 'focus' //响应事件。如果没有传入event,则按照默认的click
|
});
|
laydate({
|
elem: '#signOutTime', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
event: 'focus' //响应事件。如果没有传入event,则按照默认的click
|
});
|
});
|
</script>
|
</head>
|
<body class="gray-bg">
|
<div class="wrapper wrapper-content">
|
<div class="ibox">
|
<div class="ibox-title">
|
<h5>课外活动签到列表 </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="sportSign" action="${ctx}/sportsign/sportSign/" 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>
|
<input id="signEnterTime" name="signEnterTime" type="text" maxlength="20" class="laydate-icon form-control layer-date "
|
value="<fmt:formatDate value="${sportSign.signEnterTime}" pattern="yyyy-MM-dd"/>"/>
|
<span>出门时间:</span>
|
<input id="signOutTime" name="signOutTime" type="text" maxlength="20" class="laydate-icon form-control layer-date"
|
value="<fmt:formatDate value="${sportSign.signOutTime}" pattern="yyyy-MM-dd"/>"/>
|
<span>卡号:</span>
|
<form:input path="signCardID" htmlEscape="false" maxlength="64" class=" form-control input-sm"/>
|
|
<span>姓名:</span>
|
<form:input path="userName" htmlEscape="false" maxlength="64" class=" form-control input-sm"/>
|
</div>
|
|
|
|
<br/> <br/>
|
<div class="form-group">
|
|
<div class="col-sm-12"> <label class=" control-label" for="-NaN">部门/班级:</label>
|
|
<label class="checkbox-inline" for="-NaN">
|
<form:checkbox path="UserDepIDList" value="7"/>教职工</label>
|
<label class="checkbox-inline" for="-NaN">
|
<form:checkbox path="UserDepIDList" value="1"/>一年级</label>
|
<label class="checkbox-inline" for="-NaN">
|
<form:checkbox path="UserDepIDList" value="2"/>二年级</label>
|
<label class="checkbox-inline" for="-NaN">
|
<form:checkbox path="UserDepIDList" value="3"/>三年级</label>
|
<label class="checkbox-inline" for="-NaN">
|
<form:checkbox path="UserDepIDList" value="4"/>四年级</label>
|
<label class="checkbox-inline" for="-NaN">
|
<form:checkbox path="UserDepIDList" value="5"/>五年级</label>
|
<label class="checkbox-inline" for="-NaN">
|
<form:checkbox path="UserDepIDList" value="6" lable="六年级"/>六年级</label>
|
</div>
|
</div>
|
|
</form:form>
|
<br/>
|
</div>
|
</div>
|
|
<!-- 工具栏 -->
|
<div class="row">
|
<div class="col-sm-12">
|
<div class="pull-left">
|
<shiro:hasPermission name="sportsign:sportSign:add">
|
<table:addRow url="${ctx}/sportsign/sportSign/form" title="课外活动签到"></table:addRow><!-- 增加按钮 -->
|
</shiro:hasPermission>
|
<shiro:hasPermission name="sportsign:sportSign:edit">
|
<table:editRow url="${ctx}/sportsign/sportSign/form" title="课外活动签到" id="contentTable"></table:editRow><!-- 编辑按钮 -->
|
</shiro:hasPermission>
|
<shiro:hasPermission name="sportsign:sportSign:del">
|
<table:delRow url="${ctx}/sportsign/sportSign/deleteAll" id="contentTable"></table:delRow><!-- 删除按钮 -->
|
</shiro:hasPermission>
|
<shiro:hasPermission name="sportsign:sportSign:import">
|
<table:importExcel url="${ctx}/sportsign/sportSign/import"></table:importExcel><!-- 导入按钮 -->
|
</shiro:hasPermission>
|
<shiro:hasPermission name="sportsign:sportSign:export">
|
<table:exportExcel url="${ctx}/sportsign/sportSign/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="reset()" ><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 signCardID">卡号</th>
|
<th class="sort-column signUserID">姓名</th>
|
<th class="sort-column signStatus">性别</th>
|
<th class="sort-column signType">职务</th>
|
<th class="sort-column locationId">部门/班级</th>
|
<th class="sort-column signEnterTime">进入时间</th>
|
<th class="sort-column signOutTime">出门时间</th>
|
<th class="sort-column locationId">地点</th>
|
<th class="sort-column timeCount">活动时间(分钟)</th>
|
<th>操作</th>
|
</tr>
|
</thead>
|
<tbody>
|
<c:forEach items="${page.list}" var="sportSign">
|
<tr>
|
<td> <input type="checkbox" id="${sportSign.id}" class="i-checks"></td>
|
<td><a href="#" onclick="openDialogView('查看课外活动签到', '${ctx}/sportsign/sportSign/form?id=${sportSign.id}','800px', '500px')">
|
${sportSign.signCardID}
|
</a></td>
|
<td>
|
${sportSign.userName}
|
</td>
|
<td>
|
${fns:getDictLabel(sportSign.usersex, 'sex', '')}
|
</td>
|
<td>
|
${fns:getDictLabel(sportSign.userDuty, 'user_duty', '')}
|
</td>
|
<td>
|
${fns:getDictLabel(sportSign.depId, 'dep_type', '')}
|
</td>
|
<td>
|
<fmt:formatDate value="${sportSign.signEnterTime}" pattern="yyyy-MM-dd HH:mm:ss"/>
|
</td>
|
<td>
|
<fmt:formatDate value="${sportSign.signOutTime}" pattern="yyyy-MM-dd HH:mm:ss"/>
|
</td>
|
<td>
|
${sportSign.locationId}
|
</td>
|
<td>
|
${sportSign.timeCount}
|
</td>
|
<td>
|
<shiro:hasPermission name="sportsign:sportSign:view">
|
<a href="#" onclick="openDialogView('查看课外活动签到', '${ctx}/sportsign/sportSign/form?id=${sportSign.id}','800px', '500px')" class="btn btn-info btn-xs" ><i class="fa fa-search-plus"></i> 查看</a>
|
</shiro:hasPermission>
|
<shiro:hasPermission name="sportsign:sportSign:edit">
|
<a href="#" onclick="openDialog('修改课外活动签到', '${ctx}/sportsign/sportSign/form?id=${sportSign.id}','800px', '500px')" class="btn btn-success btn-xs" ><i class="fa fa-edit"></i> 修改</a>
|
</shiro:hasPermission>
|
<shiro:hasPermission name="sportsign:sportSign:del">
|
<a href="${ctx}/sportsign/sportSign/delete?id=${sportSign.id}" onclick="return confirmx('确认要删除该课外活动签到吗?', 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>
|