notice.zml 902 B

12345678910111213141516171819202122232425
  1. ${zhiqim_manager_breadcrumb("公告列表")}
  2. ${zhiqim_manager_content()}
  3. ${sweet_alert_reuse_method()}
  4. <#-- 列表 -->
  5. <table class="z-table z-bordered z-mg-t20 z-pd10 z-bg-white z-lh150p z-text-center">
  6. <tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
  7. <td width="15%">公告标题</td>
  8. <td width="*">公告内容</td>
  9. <td width="10%">发布时间</td>
  10. </tr>
  11. <#for item : result.list()>
  12. <tr class="z-h60" bgcolor="${zhiqim_manager_tr_bg(item_index)}">
  13. <td>#{item.getNoticeTitle()}</td>
  14. <td>#{item.getNoticeContent()}</td>
  15. <td>#{Sqls.toDateTimeString(item.getReleaseTime())}</td>
  16. </tr>
  17. </#for>
  18. ${zhiqim_manager_tr_no_record(result, 10, "暂时没有公告")}
  19. </table>
  20. <table class="z-table z-bordered zi-bd-t-none z-bg-white">
  21. <tr class="z-h50">
  22. <td><div class="z-float-right z-mg-r10">${PagingGo.toHtmlLink(result)}</div></td>
  23. </tr>
  24. </table>
  25. ${zhiqim_manager_content_end()}