<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>文档资料</title>
|
</head>
|
|
<body>
|
[#include "/business/pages/include/static.html" /]
|
<div class="deal_switch_con" style="display:block;">
|
[#if files?? && files?size>0]
|
<table class="general file_show">
|
<tbody>
|
<tr class="title">
|
<th>文件名</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.FILE_SIZE}</td>
|
</tr>
|
[/#list]
|
</tbody></table>
|
[#else]
|
<div class="loadpos"><span class="nodata"></span></div>
|
[/#if]
|
</div>
|
|
|
<script type="text/javascript">
|
|
|
</script>
|
</body>
|
</html>
|