<!DOCTYPE html>
|
<html lang="en">
|
<meta charset="utf-8">
|
<title></title>
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
<meta content="" name="description">
|
<meta content="" name="author">
|
<link href="../../css/common.css" rel="stylesheet">
|
<script src="../../js/jquery-1.7.2.min.js"></script>
|
<script src="../../js/foundation-2.0.js"></script>
|
<style>
|
.board-header {
|
height: 36px;
|
line-height: 36px;
|
color: #90B91D;
|
font-size: 16px;
|
font-weight: bold;
|
padding-left: 30px;
|
background-color: #f7f2f2;
|
}
|
|
.board-title {
|
height: 40px;
|
line-height: 45px;
|
text-align: center;
|
font-size: 15px;
|
font-weight: bold;
|
}
|
|
.board-content {
|
position: absolute;
|
top: 80px;
|
left: 30px;
|
right: 30px;
|
bottom: 40px;
|
line-height: 26px;
|
border: 1px solid #f7f2f2;
|
font-weight: normal;
|
}
|
</style>
|
<script type="text/javascript">
|
var lbl_title, lbl_content, params;
|
|
function loadNews(id) {
|
lbl_title.html("");
|
lbl_content.html("");
|
|
Server.call("root/console/getNews?id=" + id, function(result){
|
if (result) {
|
lbl_title.html(result.title);
|
lbl_content.html(decodeURIComponent(result.contents));
|
}
|
});
|
}
|
|
$(document).ready(function() {
|
Loading.hide();
|
|
lbl_title = $("#lbl_title");
|
lbl_content = $("#lbl_content");
|
|
params = getURLParams(window.location.href);
|
|
loadNews(params.id);
|
});
|
</script>
|
</head>
|
<body>
|
<div class="board-header">公告详情</div>
|
<div class="board-title" id="lbl_title"></div>
|
<div class="board-content" id="lbl_content">
|
</div>
|
<div style="position: fixed; height: 40px; line-height: 40px; width: 100%; bottom: 0px; text-align: right;">
|
<div class="btn btn-green" style="margin-right: 100px;" onclick="Win.close()">返回</div>
|
</div>
|
</body>
|
|
</html>
|