12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%@page contentType="text/html" pageEncoding="UTF-8"%>
- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>应急简报</title>
-
- <%@include file="../../include.jsp" %>
- <script type="text/javascript" src="/nwyj/scripts/cockpit/search/search_util.js"></script>
- <link href="/nwyj/css/cockpit/index_title.css" rel="stylesheet" type="text/css"/>
- <link href="/nwyj/css/cockpit/search/supesubo.css" rel="stylesheet" type="text/css"/>
- <!-- <script type="text/javascript" src="/nwyj/scripts/cockpit/otherpage/news.js"></script> -->
- <script type="text/javascript" src="/nwyj/scripts/cockpit/otherpage/emer_briefing.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/cockpit/otherpage/supesubo.js"></script>
-
-
- <style type="text/css">
- ._main_list_box{width:100%; height:auto; overflow:auto; }
- .dib{display:inline-block;}
- </style>
- <script type="text/javascript">
- $(function(){
- var deptId = su.resolveUrl().dept_id;//本级单位
- var subId = su.getSubDept(deptId);//下级单位
- var parentId = su.resolveUrl().parentId;//上级单位
-
- /*本级部门点击按钮 */
- $(".dept_btn").on("click",function(){
- init_briefing(4,deptId);
- });
-
- /* 下级部门点击按钮*/
- $(".sub_btn").on("click",function(){
- init_briefing(4,subId);
- });
-
- /* 上级部门点击按钮 */
- $(".parent_btn").on("click",function(){
- init_briefing(4,parentId);
- });
-
-
- /* 初始化简报列表 */
- init_briefing(4,deptId);
- });
- </script>
- </head>
-
- <body>
- <div class="_title"> <span>应急简报</span></div>
- <div class="overlay">
- <div class="bar_search lay">看</div><div class="dept_btn dis lay">本级</div><div class="parent_btn dis lay">上级</div><div class="sub_btn dis lay">下级</div>
- </div>
- <div id="_main_list_box" class="_main_list_box dib"></div>
- </body>
- </html>
|