[#if files?? && files?size>0]
|
<table class="general file_show">
|
<tbody>
|
<tr class="title">
|
<th>文件名</th>
|
<th width="50">上传者</th>
|
<th width="130">上传时间</th>
|
<td width="50">大小</td>
|
</tr>
|
[#list files as file]
|
<tr>
|
<th><span><a href="${base}/business/pages/file/downloadFile.html?fileId=${file.ID}">${file.FILE_NAME}</a></span></th>
|
<td>${file.USER_NAME}</td>
|
<td>${DateUtil.format("yyyy-MM-dd HH:mm:ss",file.CREATE_TIME)}</td>
|
<td>${file.FILE_SIZE}</td>
|
</tr>
|
[/#list]
|
</tbody></table>
|
[#else]
|
<div class="loadpos"><span class="nodata"></span></div>
|
[/#if]
|