szjc.html 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>事中监察</title>
  6. <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
  7. <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
  8. <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
  9. <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
  10. <link href="../../AFrontEnd/plugins/swiper/swiper.css" rel="stylesheet" />
  11. <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
  12. <script>document.write("<link href='css/sqgs.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
  13. </head>
  14. <body ng-controller="listCtrl as ctl" ng-cloak>
  15. <div style="padding:0 10px">
  16. <div class="sp-page-tab">
  17. <span ng-class="{'pageTabActive':ctl.search.type==1}" style="font-weight: 900; " ng-click="ctl.changeType(1)"><img src="img/7-black.png" width="20" ng-if="ctl.search.type!=1" /><img src="img/7-blue.png" width="20" ng-if="ctl.search.type==1" /> 红灯件</span>
  18. <span ng-class="{'pageTabActive':ctl.search.type==2}" style="font-weight: 900; " ng-click="ctl.changeType(2)"><img src="img/8-black.png" width="20" ng-if="ctl.search.type!=2" /><img src="img/8-blue.png" width="20" ng-if="ctl.search.type==2" /> 延时件</span>
  19. </div>
  20. <div class="sp-page sp-mt-10">
  21. <table class="sp-table">
  22. <thead>
  23. <tr>
  24. <th width="50" ng-if="ctl.search.type==1"></th>
  25. <th width="50" ng-if="ctl.search.type==2">天数</th>
  26. <th>类别</th>
  27. <th>职责</th>
  28. <th>职权名称</th>
  29. <th>申请编号</th>
  30. <th>项目名称</th>
  31. <th>项目地址</th>
  32. <th>申请单位</th>
  33. <th>发证时间</th>
  34. <th>发证单位</th>
  35. </tr>
  36. </thead>
  37. <tr dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
  38. <td ng-if="ctl.search.type==1" style="text-align: center; text-indent: 0"><img src="img/red.png" /></td>
  39. <td ng-if="ctl.search.type==2" style="text-align: center; text-indent: 0" ng-bind="item.DAYSDELAY"></td>
  40. <td style="text-align:center;text-indent:0" ng-bind="item.CTYPE"></td>
  41. <td ng-bind="item.KIND"></td>
  42. <td>
  43. <div style="cursor:pointer" ng-bind="item.CNAME" ng-click="ctl.getInfo(item)"></div>
  44. </td>
  45. <td ng-bind="item.APPCODE"></td>
  46. <td ng-bind="item.PRJNAME"></td>
  47. <td ng-bind="item.CADDR"></td>
  48. <td ng-bind="item.APPUNIT"></td>
  49. <td ng-bind="item.FDATE"></td>
  50. <td ng-bind="item.FUNIT"></td>
  51. </tr>
  52. </table>
  53. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  54. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  55. </div>
  56. <div class="sp-page" ng-show="ctl.noDataTip != 0">
  57. <div class="sp-page-col sp-pull-right">
  58. <div class="sp-lh-34">
  59. 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
  60. ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
  61. </div>
  62. </div>
  63. <div class="sp-page-col sp-pull-right">
  64. <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
  65. on-page-change="ctl.getData(newPageNumber)">
  66. </dir-pagination-controls>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  72. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  73. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  74. <script src="../../apiurljs.js"></script>
  75. <script src="../../js/sm4.js"></script>
  76. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  77. <script>document.write('<scri' + 'pt src="js/szjc.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  78. </body>
  79. </html>