<!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;
|
background-color: transparent;
|
}
|
|
.div_zymain {
|
width: 100%;
|
height: 270px;
|
}
|
|
.div_zytitle {
|
float: left;
|
width: 100%;
|
height: 40px;
|
margin-top: 25px;
|
margin-left: 10px;
|
}
|
|
.div_zytitle span {
|
float: left;
|
line-height: 37px;
|
font-size: 22px;
|
margin-left: 23px;
|
color: #4777FF;
|
font-weight: 600;
|
}
|
|
.div_zycontent {
|
width: 100%;
|
height: 100%;
|
float: left;
|
}
|
|
.zycontent {
|
font-size: 16px;
|
height: 37px;
|
/*margin: 0 5px 0 5px;*/
|
width: 90%;
|
/*margin-left: 20px;*/
|
line-height: 37.3px;
|
color: #1e1e1e;
|
display: inline-flex;
|
}
|
|
.zycontent .a {
|
width: 90%;
|
float: left;
|
cursor: pointer;
|
font-size:14px;
|
overflow: hidden;
|
white-space: nowrap;
|
text-overflow: ellipsis;
|
}
|
|
.div_zynew {
|
float: left;
|
width: 20px;
|
height: 20px;
|
margin-top: 3px;
|
margin-left: 3px;
|
line-height: 19px;
|
cursor: default;
|
}
|
|
ul {
|
margin: 0;
|
}
|
|
li {
|
color: #1e1e1e;
|
margin-top: 8px;
|
}
|
|
.moreurl {
|
float: left;
|
padding: 0px 5px;
|
background-color: #4777ff;
|
color: white !important;
|
font-size: 15px !important;
|
border-radius: 3px;
|
margin-left: 10px !important;
|
font-weight: normal !important;
|
cursor: pointer;
|
width: 32px;
|
margin-top: 8.8px;
|
}
|
</style>
|
</head>
|
<body>
|
<div class="div_zymain">
|
<div class="div_zytitle">
|
<span>资讯动态</span>
|
<div class="moreurl" onclick="moreUrl();">更多</div>
|
</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/6',
|
success : function(result) {
|
var html = "";
|
var data = eval(result);
|
if (data.length > 0) {
|
html += "<ul>"
|
for (var i = 0; i < data.length; i++) {
|
html += "<li>";
|
// var title = data[i].title.length>17?data[i].title.substring(0,17)+"...":data[i].title;
|
html += "<div class='zycontent'><div style='font-size: 18px;color: #34363f;' title='"+ data[i].title.replace("'","'").replace("\"",""") +"' class='a' onclick=openWin("+data[i].newsid+")>"
|
+ data[i].title.replace("'","'").replace("\"",""") + "</div>";
|
// if (i < 2) {
|
// html += "<div class='div_zynew'><img width='20' height='20' src='/image/MenHuIndex/new.gif'></div></div>";
|
// } else {
|
html += "</div>";
|
// }
|
html += "</li>";
|
}
|
html += "</ul>";
|
}
|
$(".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=/res/PingTaiMenHu/ZiXunDongTai"); //增加“更多”
|
});
|
|
function openWin(id) {
|
window.open("/res/PingTaiMenHu/ZiXunInfo?newsid="+id, "_blank");
|
}
|
|
function moreUrl() {
|
var url = "/res/PingTaiMenHu/ZiXunIndex?Menu=DTFW&menuId=10";
|
window.open(url);
|
}
|
/*]]>*/
|
</script>
|