<!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>
|