1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <div class="table-responsive" ng-style="to.textheight">
- <div class="pull-left fontcolor-two fontsizes-14 font-weight-500">
- 固定资产
- </div>
- <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>
- <div class="pull-left fontcolor-two fontsizes-14 font-weight-500">
- 耗材资产
- </div>
- <table ng-table="tableParamshao" class="table">
- <thead>
- <!-- <th><input name="" type="checkbox" ng-value="$data" id="checkedAll"></th> -->
- <th>序号</th>
- <th ng-repeat="itemtitle in to.meanslisttitle">{{itemtitle.name}}</th>
- </thead>
- <tbody ng-repeat="p in $data">
- <tr id="tr{{p.id}}" ng-class-odd="'odd'" ng-class-even="'even'">
- <td class="rowTd ">{{$index+1+(tableParamshao.$params.page-1)*tableParamshao.$params.count}}</td>
- <td class="rowTd " ng-repeat="itemcon in to.meanslisttitle">{{p[itemcon.value]}}</td>
- </tr>
- </tbody>
- </table>
- </div>
|