25 行
902 B
Plaintext
25 行
902 B
Plaintext
${zhiqim_manager_breadcrumb("公告列表")}
|
|
${zhiqim_manager_content()}
|
|
${sweet_alert_reuse_method()}
|
|
<#-- 列表 -->
|
|
<table class="z-table z-bordered z-mg-t20 z-pd10 z-bg-white z-lh150p z-text-center">
|
|
<tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
|
|
<td width="15%">公告标题</td>
|
|
<td width="*">公告内容</td>
|
|
<td width="10%">发布时间</td>
|
|
</tr>
|
|
<#for item : result.list()>
|
|
<tr class="z-h60" bgcolor="${zhiqim_manager_tr_bg(item_index)}">
|
|
<td>#{item.getNoticeTitle()}</td>
|
|
<td>#{item.getNoticeContent()}</td>
|
|
<td>#{Sqls.toDateTimeString(item.getReleaseTime())}</td>
|
|
</tr>
|
|
</#for>
|
|
${zhiqim_manager_tr_no_record(result, 10, "暂时没有公告")}
|
|
</table>
|
|
<table class="z-table z-bordered zi-bd-t-none z-bg-white">
|
|
<tr class="z-h50">
|
|
<td><div class="z-float-right z-mg-r10">${PagingGo.toHtmlLink(result)}</div></td>
|
|
</tr>
|
|
</table>
|
|
${zhiqim_manager_content_end()} |