cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
</head>
 
<body>
<header class="kltit">
 
<a href="javascript:history.go(-1);"><span></span></a>处理记录明细</header>
<section class="wlrecorddetail">
    <h2>
        <label>${DateUtil.format("yyyy年MM月dd日 HH:mm:ss",record.DEAL_TIME)}</label>
        ${record.DEAL_USER_NAME}
        [#if record.files?? && record.files?size>0]<a href="#file"><span></span></a>[/#if]
    </h2>
    <p>${StringUtil.str2Html(record.DEAL_CONTENT)}</p>
</section>
 
 
[#if record.files?? && record.files?size>0]
    <section class="wlfile clearfix bt5" id="file">
        [#list record.files as file]
            <a href="${base}/uwyw/uIncident/download.html?fileId=${file.ID}"><p>
                <span class="fileicon1"></span>
                <label>
                    ${file.FILE_NAME}
                    <em>${file.FILE_SIZE}  ${DateUtil.format("yyyy-MM-dd Hh:mm:ss",CREATE_TIME)}</em>
                </label>
            </p>
            </a>
        [/#list]
    </section>
[/#if]
</body>
</html>