<!DOCTYPE html>
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.w3.org/1999/xhtml" >
|
<head>
|
<meta charset="UTF-8" />
|
<script th:src="@{${pubzyWebRoot} + 'media/js/jquery-1.11.1.js'}"></script>
|
<script th:src="@{${pubzyWebRoot} + 'media/js/winPro.js'}"></script>
|
<script src="/js/MenHuMore.js"></script>
|
<style>
|
body {
|
margin: 0;
|
font-family: "Roboto", sans-serif !important;
|
}
|
|
.div_zymain {
|
width: 100%;
|
height: 270px;
|
background-color: #e9f8fe;
|
}
|
|
.div_zytitle {
|
width: 100%;
|
height: 40px;
|
float: left;
|
background-color: #C1E4F2;
|
display: none;
|
}
|
|
.div_zytitle span {
|
line-height: 37px;
|
font-size: 20px;
|
margin-left: 20px;
|
}
|
|
.div_zycontent {
|
width: 100%;
|
height: 100%;
|
float: left;
|
padding-top: 5px;
|
}
|
|
.zycontent {
|
font-size: 16px;
|
height: 37px;
|
margin: 0 5px 0 5px;
|
float: left;
|
width: 90%;
|
border-bottom: dotted 1px #B7B4B4;
|
margin-left: 20px;
|
line-height: 37.3px;
|
}
|
|
.zycontent .a {
|
float: left;
|
cursor: pointer;
|
background-color: #e9f8fe;
|
font-size:14px;
|
}
|
|
.div_zynew {
|
float: left;
|
width: 20px;
|
height: 20px;
|
margin-top: 3px;
|
margin-left: 3px;
|
line-height: 19px;
|
cursor: default;
|
}
|
</style>
|
</head>
|
<body>
|
<div class="div_zymain">
|
<div class="div_zytitle">
|
<span>资讯动态</span>
|
</div>
|
<div class="div_zycontent"></div>
|
</div>
|
</body>
|
</html>
|
|
<script th:inline="javascript">
|
/*<![CDATA[*/
|
var backstageWebRoot = [[${backstageWebRoot}]];
|
//var webroot = [[${webroot}]];
|
$(function() {
|
$.ajax({
|
type : "GET",
|
url : backstageWebRoot + 'api/sys/pubnews/queryTopList/11',
|
success : function(result) {
|
var html = "";
|
var data = eval(result);
|
if (data.length > 0) {
|
for (var i = 0; i < data.length; i++) {
|
var title = data[i].title.length>18?data[i].title.substring(0,18)+"...":data[i].title;
|
html += "<div class='zycontent'><div title='"+data[i].title+"' class='a' onclick=openWin("+data[i].newsid+")>"
|
+ title + "</div>";
|
if (i < 2) {
|
html += "<div class='div_zynew'><img width='20' height='20' src='/image/MenHuIndex/new.gif'></div></div>";
|
} else {
|
html += "</div>";
|
}
|
}
|
}
|
$(".div_zycontent").html(html);
|
}
|
});
|
// more("更多", "http://" + window.location.host + "/res/PingTaiMenHu/ZiXunIndex?Menu=DTFW&menuId=10", window.location.href); //增加“更多”
|
more("更多", "http://" + window.location.host + "/res/PingTaiMenHu/ZiXunIndex?Menu=DTFW&menuId=10", "http://www.nmsmp.com:8082/login?oldurl=%2Fres%2FPingTaiMenHu%2FZiXunDongTai"); //增加“更多”
|
});
|
|
function openWin(id) {
|
window.open("/res/PingTaiMenHu/ZiXunInfo?newsid="+id, "_blank");
|
}
|
/*]]>*/
|
</script>
|