1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>通知公告—列表</title>
- <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
- <link href="../../AFrontEnd/plugins/swiper/swiper.css" rel="stylesheet" />
- <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
- <style>
- .newsList li {
- line-height: 25px;
- cursor:pointer
- }
- .newsList li span {
- display: inline-block;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- </style>
- </head>
- <body ng-controller="indexCtrl as ctl" ng-cloak>
- <div class="sp-page" style="height: 300px">
- <div class="sp-col-100 sp-text-right ">
- <strong class="sp-fs-18 sp-pull-left">通知公告</strong>
- <span style="cursor:pointer;color:#0094ff" onclick="window.top.sp.addTabNav('FZE02-TZGG', '通知公告', 'tpl/wenjianshow/list3.html?lastReturnPageno=1&val=C01')">更多</span>
- <div class="sp-line-gray"></div>
- </div>
- <div class="sp-tab sp-pl-30 sp-pr-10" id="newsList">
- <ul class="newsList">
- <li ng-repeat="item in ctl.list" title="{{item.GGBT}}" ng-click="ctl.openTab(item.ID)">
- <span class="title sp-color-red" style="width: 50px" ng-if="ctl.today==item.FBSJ.slice(0,10)">NEW</span>
- <!--<span class="title sp-color-red" style="width: 50px" ng-if="ctl.today!=item.FBSJ.slice(0,10)"></span>-->
- <span class="title" style="width: calc(75% - 50px) " ng-bind="item.GGBT"></span>
- <span class="sp-pull-right" ng-bind="item.FBSJ.slice(0,10)"></span>
- </li>
- </ul>
- </div>
- </div>
- <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
- <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
- <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
- <script src="../../AFrontEnd/plugins/swiper/swiper.js"></script>
- <script src="../../apiurljs.js"></script>
- <script src="../../js/sm4.js"></script>
- <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- <script>document.write('<scri' + 'pt src="js/tzgglist.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- </body>
- </html>
|