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