提交 f0446192 编写于 作者: Y yadong.zhang

首页滚动通知

上级 3ab8fa19
...@@ -330,4 +330,24 @@ $(function () { ...@@ -330,4 +330,24 @@ $(function () {
window.location.href = action; window.location.href = action;
} }
}); });
/* 首页通知 */
if($('#notice-box') && $('#notice-box')[0]){
$.ajax({
type: "post",
url: "/api/listNotice",
success: function (json) {
if(json.status == 200 && json.data && json.data.length > 0){
var tpl = '{{#data}}<li class="scrolltext-title">'
+ '<a href="javascript:void(0)" rel="bookmark">{{&content}}</a>'
+ '</li>{{/data}}';
var html = Mustache.render(tpl, json);
$("#notice-box").html(html);
}
},
error: function () {
$.tool.ajaxError();
}
});
}
}); });
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册