etms/WEB-INF/view/cetc54/log/log.ftl
liyuchen c24bea2687 Initial commit: JCDP 教育培训管理系统 v54
- 系统管理模块(用户/角色/组织/权限/日志)
- 教育培训计划管理模块
- 教育培训实施模块
- 考试管理模块
- 调研问卷管理模块
- 外派培训管理模块
- 年度培训总结模块
- 学习资源管理模块
- 任职资格管理模块
- 即时通讯模块
- APP 版本管理
- 统计分析模块(FineReport)
- 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md)
- 项目开发指南(PROJECT_GUIDE.md)
2026-04-16 16:41:34 +08:00

52 lines
1.7 KiB
Plaintext

<!DOCTYPE HTML>
<html>
<head>
<#include "../layout/ref_head.ftl">
</head>
<body>
<div id="grid">
<div class="grid_toolbar">
<table style="width:100%;">
<tr>
<td style="width:100%;">
</td>
<td>
<input id="searchbox" type="text">
</td>
</tr>
</table>
</div>
<table class="grid_data">
<thead>
<tr>
<td style="width: 28px;">序号</td>
<td sortfield="sessionid" style="width: 280px;">会话ID</td>
<td sortfield="loginname" style="width: 90px;">登录账户</td>
<td sortfield="username" style="width: 90px;">用户姓名</td>
<td sortfield="actionurl" style="width: 160px;">操作路径</td>
<td sortfield="action" style="width: 200px;">操作内容</td>
<td style="width: 200px;">备注</td>
<td sortfield="spendtime" style="width: 80px;">用时(秒)</td>
<td sortfield="createtime" style="width: 140px;">操作时间</td>
</tr>
</thead>
<tbody>
<tr class="row{{i%2}}">
<td>{{i+1}}</td>
<td>{{value.sessionid}}</td>
<td>{{value.loginname}}</td>
<td>{{value.username}}</td>
<td>{{value.actionurl}}</td>
<td>{{value.action}}</td>
<td>{{value.remark}}</td>
<td>{{value.spendtime}}</td>
<td>{{value.createtime |dateTimeFilter}}</td>
</tr>
</tbody>
</table>
<div class="grid_pagination"></div>
</div>
<#include "../layout/ref_script.ftl">
<script type="text/javascript" src="${asset_jspath}/jcdp/log/log.js"></script>
</body>
</html>