123456789101112131415161718192021222324252627282930313233343536 |
- <div class="row fontcolor-two margin-top-15" id="searchid" ng-if="imgs.length">
- <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" ng-if="img.suffix=='jpeg'||img.suffix=='jpg'||img.suffix=='svg'||img.suffix=='png'||img.suffix=='bmp'||img.suffix=='gif'||img.suffix=='tif'" style="position: relative;">
- <img ng-src="{{img.previewUrl}}" style="max-width:200px;max-height:300px;margin:0 auto; display:block;"
- class="pos-rlt" width=100%; height=100%; ng-click="preview(img.previewUrl,idx)" />
- </div>
- </div>
- </div>
- </div>
- <style type="text/css">
- .imgsBox {
- border: 1px solid #ddd;
- }
- .fileupload {
- width: 100px;
- height: 100px;
- border: 1px dotted #ccc;
- display: inline-block;
- background: #fff;
- }
- .imgsBox {
- display: flex;
- justify-content: space-between;
- padding: 10px 10px;
- }
- </style>
|