108 lines
4.9 KiB
Plaintext
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>
|