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
      [#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]