123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!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>
- </head>
- <body ng-controller="listCtrl as ctl" ng-cloak>
- <div style="padding:0 10px">
- <div class="sp-page-tab">
- <span ng-class="{'pageTabActive':ctl.type==1}" style="font-weight: 900; " ng-click="ctl.changeType(1)">违反程序报警</span>
- <span ng-class="{'pageTabActive':ctl.type==2}" style="font-weight: 900; " ng-click="ctl.changeType(2)">缺少要件报警</span>
- <span ng-class="{'pageTabActive':ctl.type==3}" style="font-weight: 900; " ng-click="ctl.changeType(3)">差异异常报警</span>
- <span ng-class="{'pageTabActive':ctl.type==4}" style="font-weight: 900; " ng-click="ctl.changeType(4)">执行情况差异报警</span>
- <div class="sp-pull-right">
- <a class="sp-pull-right sp-btn-gray sp-btn-radius" href="bjtx.html">
- <i class="fa fa-reply sp-mr-5"></i>返 回
- </a>
- </div>
- </div>
- <div class="sp-page sp-mt-10">
- <table class="sp-table">
- <thead>
- <tr>
- <th>类别</th>
- <th>职责</th>
- <th>职权名称</th>
- <th>申请编号</th>
- <th>项目名称</th>
- <th>项目地址</th>
- <th>申请单位</th>
- <th>发证时间</th>
- <th>发证单位</th>
- </tr>
- </thead>
- <tr dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
- <td style="text-align:center;text-indent:0" ng-bind="item.CTYPE"></td>
- <td ng-bind="item.KIND"></td>
- <td>
- <div style="cursor:pointer" ng-bind="item.CNAME" ng-click="ctl.getInfo(item)"></div>
- </td>
- <td ng-bind="item.APPCODE"></td>
- <td ng-bind="item.PRJNAME"></td>
- <td ng-bind="item.CADDR"></td>
- <td ng-bind="item.APPUNIT"></td>
- <td ng-bind="item.FDATE"></td>
- <td ng-bind="item.FUNIT"></td>
- </tr>
- </table>
- <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">
- <div class="sp-lh-34">
- 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
- ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
- </div>
- </div>
- <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>
- </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="../../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/bjtxlist.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- </body>
- </html>
|