|
|
|
@ -103,8 +103,8 @@
|
|
|
|
|
<a href="announce_view.html" target="_blank">更多+</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-card-body" style="max-height: 400px;overflow: hidden;">
|
|
|
|
|
<div style="width:100%;height: 125px;border-bottom: 1px solid #e6e6e6;box-sizing: border-box;line-height: 47px">
|
|
|
|
|
<div class="layui-card-body" style="min-height: 400px;overflow: hidden;">
|
|
|
|
|
<div th:if="${!noticeList.isEmpty()}" style="width:100%;height: 125px;border-bottom: 1px solid #e6e6e6;box-sizing: border-box;line-height: 47px">
|
|
|
|
|
<h1 style="font-size: 22px;">
|
|
|
|
|
<a th:href="@{/public_view.html(type=1,id=${noticeList[0].noticeId})}" th:title="${noticeList[0].noticeTitle}" target="_blank" >[[${#strings.abbreviate(noticeList[0].noticeTitle,33)}]]</a>
|
|
|
|
|
</h1>
|
|
|
|
@ -116,6 +116,9 @@
|
|
|
|
|
<span class="time" >[[${#dates.format(notice.createTime, 'yyyy年MM月dd日')}]] </span>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<span style="position: absolute;top: 45%;left: 45%;" th:if="${noticeList.isEmpty()}">
|
|
|
|
|
<p>暂无内容</p>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -143,7 +146,7 @@
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-card-body" style="max-height: 400px;overflow: hidden;">
|
|
|
|
|
<div style="width:100%;height: 165px;display: flex;justify-content: space-between;">
|
|
|
|
|
<div th:if="${!workList.isEmpty()}" style="width:100%;height: 165px;display: flex;justify-content: space-between;">
|
|
|
|
|
<div style="height: 100%;width: 47%;filter: brightness(1.1);">
|
|
|
|
|
<a th:href="@{/public_view.html(type=2,id=${workList[0].workId})}" th:title="${workList[0].workTitle}" target="_blank">
|
|
|
|
|
<img style="height: 95%;width: 90%" th:src="${workList[0].imgUrl}" th:alt="${workList[0].workTitle}" th:title="${workList[0].workTitle}">
|
|
|
|
@ -162,6 +165,9 @@
|
|
|
|
|
<span class="time">[[${work.createBy}]]</span>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<span style="position: absolute;top: 45%;left: 45%;" th:if="${workList.isEmpty()}">
|
|
|
|
|
<p>暂无内容</p>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -232,7 +238,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-card-body" style="max-height: 400px;overflow: hidden;">
|
|
|
|
|
<ul class="newslist-to">
|
|
|
|
|
<li style="list-style: none" th:each="business,status : ${businessList}" th:class="${status.count == 1 ? 'firstLi' : (status.count == 2 ? 'secondLi' : (status.count == 3 ? 'thirdLi' : ''))}">
|
|
|
|
|
<li style="list-style: none" th:each="business,status : ${businessList}" th:if="${!status.first}" th:class="${status.count == 1 ? 'firstLi' : (status.count == 2 ? 'secondLi' : (status.count == 3 ? 'thirdLi' : ''))}">
|
|
|
|
|
<span
|
|
|
|
|
th:class="${status.count == 1 ? 'first' : (status.count == 2 ? 'second' : (status.count == 3 ? 'third' : ''))}"
|
|
|
|
|
style="
|
|
|
|
@ -251,6 +257,9 @@
|
|
|
|
|
<span class="time">[[${business.createBy}]]</span>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<span style="position: absolute;top: 45%;left: 45%;" th:if="${workList.isEmpty()}">
|
|
|
|
|
<p>暂无内容</p>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|