2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!--
功能描述:资讯动态-图文列表
-->
<style type="text/css">
    .ShuJuGuanJianZi{
        font-size: 12px;
        background-color: #B6DAFA;
        padding: 3px 8px;
        border-radius: 4px;
    }
    .div_zy:hover {
        background-color: #ebf8fe;
    }
</style>
<div width="100%"  xmlns:th="http://www.w3.org/1999/xhtml">
    <div th:each="Ziyuan,ZiyuanStat:${ZiXunList}" class="div_zy">
        <div style="float: left;font-size: 18px;color:#0B92D4;cursor: pointer;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;width: 100%;" th:text="${Ziyuan.title}" th:onclick="'javascript:OpenZiXunInfo('+${Ziyuan.newsid}+')'"></div>
        <div style="width: 100%;float:left;border-bottom: 1px solid #E0DEDB;margin-top: 8px;margin-bottom:10px;margin-bottom:12px;"></div>
        <div style="float: left;width: 70%;">
            <p style="height: 8px;"><span th:text="'资讯类型:'+${Ziyuan.type}"></span> </p>
            <p style="height: 8px;"><span th:text="'发布时间:'+${Ziyuan.createdate}"></span></p>
            <p style="height: 8px;"><span th:text="'发布人:'+${Ziyuan.createusername}"></span></p>
        </div>
        <div style="float:right;width: 75px;margin-top:30px;">
            <button type="button" class="btn btn-primary" th:onclick="'javascript:OpenZiXunInfo('+${Ziyuan.newsid}+')'"> 详情</button>
        </div>
    </div>
</div>
<div class="row-fluid" style="float:left;text-align: center;width: 100%;">
    <input th:value="${Page}" type="hidden"  id="curren"/>
    <input th:value="${Count}"  type="hidden" id="total"/>
    <div id="Paginator" class="pagination">
    </div>
</div>
<script type="text/javascript" th:inline="javascript">
    $(function () {
        var count = [[${Count}]];
        $("#countNum").text(count);
    })
    function OpenZiXunInfo (id) {
        window.open("/res/PingTaiMenHu/ZiXunInfo?newsid="+id, "_blank");
    }
</script>