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