天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
2.2 KiB

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<QMAPP.Web.Models.NoticeInfoModel>" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>通知提醒</title>
</head>
<body style="background-color:#F5F5F5">
<div>
<li class="purple"><a data-toggle="dropdown" class="dropdown-toggle" href="#"><i
class="ace-icon fa fa-bell icon-animated-bell"></i><span class="badge badge-important">
1</span> </a>
<ul class="dropdown-menu-right dropdown-navbar navbar-pink dropdown-menu dropdown-caret dropdown-close">
<li class="dropdown-header"><i class="ace-icon fa fa-exclamation-triangle"></i>
1条通知
</li>
<li>
<%foreach var item in Model.listNoticeModel){ %>
<a href="#" onclick="ClickNotice('<%=item.NOTICEID %>');">
<div class="clearfix">
<span class="pull-left">
<i class="btn btn-xs no-hover btn-success fa fa-bell"></i>
<%=item.NOTICETITLE %>
</span><span class="pull-right badge badge-success">
<%=item. %></span>
</div>
</a>
<%} %>
</li>
<li class="dropdown-footer"><a href="#" onclick="MoreNotice();">查看所有通告<i class="ace-icon fa fa-arrow-right">
</i></a></li>
</ul>
</li>
</div>
</body>
<script type="text/javascript">
//查看公告
function ClickNotice(id) {
openAppWindow1('查看', '/Notice/ViewNotice?noticeID=' + id, '800', '500');
}
//所有公告
function MoreNotice() {
openUrl("", "/Notice/NoticeMessList", "tab", "公告", true);
}
</script>
</html>