1234567891011121314151617181920212223242526272829303132 |
- <table class="table table-hover margin-bottom-10" id="sample-table-1">
- <thead>
- <tr>
- <th class="center noborder">序号</th>
- <th class="noborder">附件名称</th>
- <th class="noborder">上传时间</th>
- <th class="hidden-xs noborder">文件大小</th>
- <th class="hidden-xs noborder">文件类型</th>
- <!-- <th class="center noborder">附件预览</th> -->
- <th class="center noborder">附件下载</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="attachment in attachments">
- <td class="center noborder">{{$index + 1}}</td>
- <td class="hidden-xs noborder">{{attachment.name}}</td>
- <td class="noborder">{{attachment.addTime|date:'yyyy-MM-dd HH:mm:ss'}}</td>
- <td class="noborder" nowrap>{{ attachment.size/1024/1024|number:2 }} MB</td>
- <td class="noborder">{{attachment.suffix}}</td>
- <!-- <td class="center noborder">
- <div class="visible-md visible-lg hidden-sm hidden-xs">
- <a ng-click="view(attachment.id,attachment.previewUrl)" class="btn btn-transparent btn-xs" tooltip-placement="top" tooltip="预览"><i class="icon iconfont icon-icon_yulan fn fontcolor-twelve fontsizes-8"></i></a>
- </div>
- </td> -->
- <td class="center noborder">
- <div class="visible-md visible-lg hidden-sm hidden-xs">
- <a ng-click="download(attachment.token,attachment.name)" class="btn btn-transparent btn-xs" tooltip-placement="top" tooltip="下载"><i class="icon iconfont icon-icon_updown fn fontcolor-twelve fontsizes-14"></i></a>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
|