view.html 1.0 KB

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
  3. <head>
  4. <th:block th:include="include :: header('公告详细')" />
  5. </head>
  6. <body>
  7. <div class="main-content">
  8. <div class="row">
  9. <div class="col-sm-12">
  10. <div class="mail-box-header">
  11. <div class="mail-tools tooltip-demo m-t-md">
  12. <h3 style="text-align: center">[[${notice.noticeTitle}]]</h3>
  13. <h5>
  14. <span class="pull-right font-noraml">发送时间:[[${#dates.format(notice.createTime, 'yyyy-MM-dd HH:mm:ss')}]] </span>
  15. <span class="font-noraml">发件人: </span>[[${notice.createBy}]]
  16. </h5>
  17. </div>
  18. </div>
  19. <div class="mail-box">
  20. <div class="mail-body" th:utext="${notice.noticeContent}"></div>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. <th:block th:include="include :: footer" />
  26. </body>
  27. </html>