etms/WEB-INF/view/cetc54/inbox.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

108 lines
4.9 KiB
Plaintext

<!DOCTYPE HTML>
<html>
<head>
<#include "layout/ref_head.ftl">
<link rel="stylesheet" type="text/css" href="${asset_csspath}/sysMessage.css">
</head>
<body>
<div id="tabForm" ui-config="autoFit:true,tabWidth:'90',headerWidth:'110',tabPosition:'left'">
<div ui-config="id:'base',fontIcon:{ icon:'fa-inbox',color:'#000'},title:'未读消息'">
<div id="grid">
<div class="grid_toolbar">
<table style="width:100%;">
<tr>
<td style="width:100%;">
<button type="button" id="btnRead"
ui-config="fontIcon:{left:{icon:'fa-eye',color:'#ffffff'}},style:'button_submit'">
设置已读
</button>
<button type="button" id="btnDelete"
ui-config="style:'button_danger'">删除
</button>
</td>
<td>
<input id="searchbox" type="text">
</td>
</tr>
</table>
</div>
<table class="grid_data">
<thead>
<tr>
<td style="width: 20px;"><input class="grid_selector" type="checkbox" id="cbAll"/></td>
<td style="width: 28px;">序号</td>
<td sortfield="msgtitle" width="150px">标题</td>
<td sortfield="msgcontent" width="50%">内容</td>
<td sortfield="username" width="240px">发送人</td>
<td sortfield="sendtime" width="240px">发送时间</td>
</tr>
</thead>
<tbody>
<tr class="row{{i%2}}">
<td><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
<td>{{i+1}}</td>
<td><a title="查看" href="javascript:void(0);"
onclick="viewRow('{{value.id}}',0);">{{value.msgtitle}}</a></td>
<td>{{value.msgcontent}}</td>
<td>{{value.username}}({{value.usercode}})</td>
<td>{{value.sendtime |dateFilter}}</td>
</tr>
</tbody>
</table>
<div class="grid_pagination"></div>
</div>
</div>
<div ui-config="id:'modifyPass',fontIcon:{ icon:'fa-check-square-o',color:'#000'},title:'已读消息'">
<div id="grid1">
<div class="grid_toolbar">
<table style="width:100%;">
<tr>
<td style="width:100%;">
<button type="button" id="btnNoRead"
ui-config="fontIcon:{left:{icon:'fa-eye-slash',color:'#ffffff'}},style:'button_submit'">
设置未读
</button>
<button type="button" id="btnDeleteRead"
ui-config="style:'button_danger'">删除
</button>
</td>
<td>
<input id="searchbox1" type="text">
</td>
</tr>
</table>
</div>
<table class="grid_data">
<thead>
<tr>
<td style="width: 20px;"><input class="grid_selector" type="checkbox" id="cbAll1"/></td>
<td style="width: 28px;">序号</td>
<td sortfield="msgtitle" width="150px">标题</td>
<td sortfield="msgcontent" width="50%">内容</td>
<td sortfield="username" width="240px">发送人</td>
<td sortfield="sendtime" width="240px">发送时间</td>
<td sortfield="readtime" width="240px">阅读时间</td>
</tr>
</thead>
<tbody>
<tr class="row{{i%2}}">
<td><input class="grid_selector" type="checkbox" id="cb{{i}}"/></td>
<td>{{i+1}}</td>
<td><a title="查看" href="javascript:void(0);"
onclick="viewRow('{{value.id}}',1);">{{value.msgtitle}}</a></td>
<td>{{value.msgcontent}}</td>
<td>{{value.username}}({{value.usercode}})</td>
<td>{{value.sendtime |dateFilter}}</td>
<td>{{value.readtime |dateFilter}}</td>
</tr>
</tbody>
</table>
<div class="grid_pagination"></div>
</div>
</div>
</div>
<#include "inbox_edit.ftl">
<#include "layout/ref_script.ftl">
<script type="text/javascript" src="${asset_jspath}/jcdp/inbox.js"></script>
</body>
</html>