|
@@ -122,9 +122,11 @@
|
|
|
<label class="col-sm-4 control-label">营业执照:</label>
|
|
|
<div class="col-sm-8">
|
|
|
<div class="fileinput fileinput-new">
|
|
|
- <div class="fileinput-new thumbnail"
|
|
|
- style="width: 140px; height: 140px;" onclick="openImg(this)">
|
|
|
- <img th:src="@{*{businessLicenseUrl}}" id="img-businessLicenseUrl" style=" width: 100%; height: 100%;">
|
|
|
+ <div class="row" style="margin-left: 0px;">
|
|
|
+ <div class="fileinput-new thumbnail col-sm-6"
|
|
|
+ style="width: 140px; height: 140px;" onclick="openImg(this)" th:each="item,it:${businessLicenseUrls}">
|
|
|
+ <img th:src="${item}" id="img-businessLicenseUrl" style=" width: 100%; height: 100%;">
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -151,9 +153,11 @@
|
|
|
<label class="col-sm-4 control-label">企业宣传图片:</label>
|
|
|
<div class="col-sm-8">
|
|
|
<div class="fileinput fileinput-new">
|
|
|
- <div class="fileinput-new thumbnail"
|
|
|
- style="width: 140px; height: 140px;" onclick="openImg(this)">
|
|
|
- <img th:src="@{*{propagandaImgUrl}}" id="img-propagandaImgUrl" style=" width: 100%; height: 100%;">
|
|
|
+ <div class="row" style="margin-left: 0px;">
|
|
|
+ <div class="fileinput-new thumbnail col-sm-6"
|
|
|
+ style="width: 140px; height: 140px;" onclick="openImg(this)" th:each="item,it:${propagandaImgUrls}">
|
|
|
+ <img th:src="${item}" id="img-propagandaImgUrl" style=" width: 100%; height: 100%;">
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|