1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!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>
- body{height:300px}
- .typeBtn{border:1px solid #1c84c6;border-radius:5px;background:#fff;color:#1c84c6;margin:0 2px;padding:2px 5px;cursor:pointer}
- .active{color:#fff;background:#1c84c6}
- </style>
- </head>
- <body ng-controller="indexCtrl as ctl" ng-cloak>
- <div class="sp-page">
- <div class="sp-page sp-mb-5">
- <strong class="sp-fs-18 sp-ml-5">待办事项</strong>
- <strong class="sp-color-red sp-fs-18 sp-ml-15" style="cursor:pointer" ng-if="ctl.dbCount>0" ng-click="ctl.goDBMORE()">督办提醒({{ctl.dbCount}})</strong>
- <span class="typeBtn sp-pull-right" ng-repeat="item in ctl.DBFL" ng-class="{'active':ctl.type==item.SORTID}" ng-click="ctl.type=item.SORTID;ctl.getData(1)" ng-bind="item.CNAME"></span>
- <span class="typeBtn sp-pull-right" ng-class="{'active':ctl.type==0}" ng-click="ctl.type=0;ctl.getData(1)">全部</span>
- </div>
- <div class="sp-page" style="height:215px">
- <table class="sp-table">
- <thead>
- <tr>
- <th width="140">类别</th>
- <th>标题</th>
- <th width="150">时间</th>
- <th width="40">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count" style="cursor:pointer" ng-click="ctl.goUrl(item)">
- <td ng-bind="item.FLOWNAME"></td>
- <!--<td ng-bind="item.TITLE1" title="{{item.TITLE}}"></td>-->
- <td><div ng-style="ctl.thWidth" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis" ng-bind="item.TITLE" title="{{item.TITLE}}"></div></td>
- <td ng-bind="item.RECEIVEDATE"></td>
- <td><span class="sp-btn-blue sp-radius" ng-click="ctl.goUrl(item)">办理</span></td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
- <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
- </div>
- <div class="sp-page" ng-show="ctl.noDataTip != 0">
- <div class="sp-page-col sp-pull-right">
- <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
- on-page-change="ctl.getData(newPageNumber)">
- </dir-pagination-controls>
- </div>
- </div>
- </div>
- <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
- <script src="../../AFrontEnd/plugins/hightcharts/highcharts.js"></script>
- <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
- <script src="../../AFrontEnd/js/angularjs/dirPagination.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/daiban.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- </body>
- </html>
|