cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[#if files?? && files?size>0]
           <table class="general file_show">
           <tbody>
               <tr class="title">
                   <th>文件名</th>
                   <td width="50">大小</td>
                   <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>
                        <td><a class="delete" href="javascript:delFile('${file.ID}')">删除</a></td></tr>
                    </tr>
                   [/#list]
            </tbody></table>
            [#else]
               <div class="loadpos"><span class="nodata"></span></div>
               [/#if]