ui-showImgs.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="row fontcolor-two margin-top-15">
  2. <div class="col-md-12 formheard_pad worknumber">
  3. <div class="pull-left fontsizes-16 font-weight-500">
  4. 处理图片
  5. </div>
  6. </div>
  7. <div class="col-md-12" style="padding:0;">
  8. <div class="imgsBox">
  9. <div class="fileupload pos-rlt" ng-repeat="(idx,img) in imgs" style="position: relative;">
  10. <img ng-src="{{attachmentAddressSplicing(img.relativeFilePath)}}" style="max-height:300px;object-fit: contain;"
  11. class="pos-rlt" width=100%; height=100%; ng-click="preview(img.relativeFilePath,idx)" />
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16. <style type="text/css">
  17. .fileupload {
  18. width: 100px;
  19. height: 100px;
  20. border: 1px dotted #ccc;
  21. display: inline-block;
  22. background: #fff;
  23. margin: 1%;
  24. }
  25. .imgsBox {
  26. border: 1px solid #ddd;
  27. display: flex;
  28. flex-wrap: wrap;
  29. padding: 10px 10px;
  30. }
  31. </style>