|
|
@@ -31,7 +31,7 @@
|
|
|
<h3 th:text="${demand.name}"></h3>
|
|
|
</div>
|
|
|
<div class="big_img">
|
|
|
- <img th:src= "${avatarUploadHost+demand.pictureUrl}"alt="" />
|
|
|
+ <img th:src= "${avatarUploadHost+demand.pictureUrl}?${avatarUploadHost+demand.pictureUrl}:${avatarUploadHost+ 'default/xuqiuimg_null.png'}"alt="" />
|
|
|
</div>
|
|
|
<div class="basic">
|
|
|
<div>
|
|
|
@@ -61,7 +61,16 @@
|
|
|
<div class="fine">
|
|
|
<div class="fine_title">精品需求</div>
|
|
|
<div th:each="reboutiquedemand:${reboutiquedemand}" class="pointer">
|
|
|
- <img th:src="${avatarUploadHost+reboutiquedemand.pictureUrl}" alt="" />
|
|
|
+
|
|
|
+ <div th:if="${reboutiquedemand.pictureUrl} == null " >
|
|
|
+ <img th:src="${avatarUploadHost+ '/default/xuqiuimg_null.png'}" alt=""/>
|
|
|
+ </div>
|
|
|
+ <div th:if="${reboutiquedemand.pictureUrl} != null" >
|
|
|
+ <img th:src="${avatarUploadHost+reboutiquedemand.pictureUrl}" alt=""/>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ <img src="${avatarUploadHost+reboutiquedemand.pictureUrl}" />
|
|
|
<p th:text="${reboutiquedemand.name}"></p>
|
|
|
<p th:text="${reboutiquedemand.id}" class="demandId"></p>
|
|
|
<p th:text="${reboutiquedemand.dataCategory}" class="demandTyp"></p>
|
|
|
@@ -79,7 +88,14 @@
|
|
|
<div class="line">猜你喜欢</div>
|
|
|
<div class="main_introduce">
|
|
|
<ul>
|
|
|
- <li th:each="redemandlist:${redemandlist}"><img th:src="${avatarUploadHost+redemandlist.pictureUrl}" alt="" />
|
|
|
+ <li th:each="redemandlist:${redemandlist}">
|
|
|
+ <div th:if="${redemandlist.pictureUrl} == null " >
|
|
|
+ <img th:src="${avatarUploadHost+ '/default/xuqiuimg_null.png'}" alt=""/>
|
|
|
+ </div>
|
|
|
+ <div th:if="${redemandlist.pictureUrl} != null" >
|
|
|
+ <img th:src="${avatarUploadHost+redemandlist.pictureUrl}" alt=""/>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="list_text">
|
|
|
<p>
|
|
|
行业:<span th:text="${redemandlist.industryCategoryAS}?${redemandlist.industryCategoryAS}:暂无行业分类"></span>
|