12345678910111213141516171819202122232425262728293031323334 |
- <div class="row fontcolor-two margin-top-15">
- <div class="col-md-12 formheard_pad worknumber">
- <div class="pull-left fontsizes-16 font-weight-500">
- 处理图片
- </div>
- </div>
- <div class="col-md-12" style="padding:0;">
- <div class="imgsBox">
- <div class="fileupload pos-rlt" ng-repeat="(idx,img) in imgs" style="position: relative;">
- <img ng-src="{{attachmentAddressSplicing(img.relativeFilePath)}}" style="max-height:300px;object-fit: contain;"
- class="pos-rlt" width=100%; height=100%; ng-click="preview(img.relativeFilePath,idx)" />
- </div>
- </div>
- </div>
- </div>
- <style type="text/css">
- .fileupload {
- width: 100px;
- height: 100px;
- border: 1px dotted #ccc;
- display: inline-block;
- background: #fff;
- margin: 1%;
- }
- .imgsBox {
- border: 1px solid #ddd;
- display: flex;
- flex-wrap: wrap;
- padding: 10px 10px;
- }
- </style>
|