uplodchange.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <div class="table-responsive" ng-style="to.textheight">
  2. <div class="pull-left fontcolor-two fontsizes-14 font-weight-500">
  3. 固定资产
  4. </div>
  5. <table class="table table-hover margin-bottom-10" id="sample-table-1">
  6. <thead>
  7. <tr>
  8. <th class="center noborder">序号</th>
  9. <th class="noborder">附件名称</th>
  10. <th class="noborder">上传时间</th>
  11. <th class="hidden-xs noborder">文件大小</th>
  12. <th class="hidden-xs noborder">文件类型</th>
  13. <!-- <th class="center noborder">附件预览</th> -->
  14. <th class="center noborder">附件下载</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <tr ng-repeat="attachment in attachments">
  19. <td class="center noborder">{{$index + 1}}</td>
  20. <td class="hidden-xs noborder">{{attachment.name}}</td>
  21. <td class="noborder">{{attachment.addTime|date:'yyyy-MM-dd HH:mm:ss'}}</td>
  22. <td class="noborder" nowrap>{{ attachment.size/1024/1024|number:2 }} MB</td>
  23. <td class="noborder">{{attachment.suffix}}</td>
  24. <!-- <td class="center noborder">
  25. <div class="visible-md visible-lg hidden-sm hidden-xs">
  26. <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>
  27. </div>
  28. </td> -->
  29. <td class="center noborder">
  30. <div class="visible-md visible-lg hidden-sm hidden-xs">
  31. <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>
  32. </div>
  33. </td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. <div class="pull-left fontcolor-two fontsizes-14 font-weight-500">
  38. 耗材资产
  39. </div>
  40. <table ng-table="tableParamshao" class="table">
  41. <thead>
  42. <!-- <th><input name="" type="checkbox" ng-value="$data" id="checkedAll"></th> -->
  43. <th>序号</th>
  44. <th ng-repeat="itemtitle in to.meanslisttitle">{{itemtitle.name}}</th>
  45. </thead>
  46. <tbody ng-repeat="p in $data">
  47. <tr id="tr{{p.id}}" ng-class-odd="'odd'" ng-class-even="'even'">
  48. <td class="rowTd ">{{$index+1+(tableParamshao.$params.page-1)*tableParamshao.$params.count}}</td>
  49. <td class="rowTd " ng-repeat="itemcon in to.meanslisttitle">{{p[itemcon.value]}}</td>
  50. </tr>
  51. </tbody>
  52. </table>
  53. </div>