list.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  6. <title>日常管理统计</title>
  7. <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
  8. <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
  9. <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
  10. <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
  11. <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
  12. <style>
  13. </style>
  14. </head>
  15. <body>
  16. <div ng-controller="listCtrl as ctl" ng-cloak>
  17. <div class="wrapper wrapper-content">
  18. <div class="row">
  19. <div class="col-md-12">
  20. <div class="ibox float-e-margins">
  21. <div class="ibox-content">
  22. <div class="row">
  23. <div class="col-md-12">
  24. <div class="sp-page">
  25. <button class="sp-btn-blue sp-pull-right" style="margin:3px" ng-click="ctl.printOut()">导出</button>
  26. <button class="sp-btn-blue sp-pull-right" style="margin:3px" ng-click="ctl.getData()">查询</button>
  27. <div class="sp-page sp-span3 sp-pull-right sp-ml-20 sp-lh-30" ng-if="ctl.search.TYPE==4">
  28. 结束时间:
  29. <input type="text" class="sp-input laydate-logo" sp-laydate style="width:150px" ng-model="ctl.search.JSSJ" />
  30. </div>
  31. <div class="sp-page sp-span3 sp-pull-right sp-ml-20 sp-lh-30" ng-if="ctl.search.TYPE==4">
  32. 开始时间:
  33. <input type="text" class="sp-input laydate-logo" sp-laydate style="width:150px" ng-model="ctl.search.KSSJ" />
  34. </div>
  35. <div class="sp-page sp-span2 sp-pull-right sp-lh-30">
  36. <select class="sp-select" ng-model="ctl.search.TYPE" ng-change="ctl.changeType()">
  37. <option value="1">本月</option>
  38. <option value="2">本季度</option>
  39. <option value="3">本年</option>
  40. <option value="4">自定义</option>
  41. </select>
  42. </div>
  43. </div>
  44. <div class="sp-page sp-mb-10" style="max-height:500px;overflow-y:auto">
  45. <table class="sp-table sp-mt-10" id="printOut">
  46. <thead>
  47. <tr>
  48. <th rowspan="2">部门</th>
  49. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">请假</th>
  50. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">销假</th>
  51. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">用车申请</th>
  52. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">申请公开</th>
  53. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">办公用品</th>
  54. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">会议</th>
  55. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">值班</th>
  56. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">工作动态</th>
  57. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">自定义工作</th>
  58. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">文件发布</th>
  59. </tr>
  60. <tr>
  61. <th>办理中</th>
  62. <th>完结</th>
  63. <th>办理中</th>
  64. <th>完结</th>
  65. <th>办理中</th>
  66. <th>完结</th>
  67. <th>办理中</th>
  68. <th>完结</th>
  69. <th>办理中</th>
  70. <th>完结</th>
  71. <th>办理中</th>
  72. <th>完结</th>
  73. <th>办理中</th>
  74. <th>完结</th>
  75. <th>办理中</th>
  76. <th>完结</th>
  77. <th>办理中</th>
  78. <th>完结</th>
  79. <th>办理中</th>
  80. <th>完结</th>
  81. </tr>
  82. </thead>
  83. <tbody>
  84. <tr ng-repeat="item in ctl.list">
  85. <td ng-bind="item.NAME"></td>
  86. <td ng-bind="item.DATA.DEAL_COUNT0_0"></td>
  87. <td ng-bind="item.DATA.STOP_COUNT0_0"></td>
  88. <td ng-bind="item.DATA.DEAL_COUNT1_0"></td>
  89. <td ng-bind="item.DATA.STOP_COUNT1_0"></td>
  90. <td ng-bind="item.DATA.DEAL_COUNT1_0"></td>
  91. <td ng-bind="item.DATA.STOP_COUNT2_0"></td>
  92. <td ng-bind="item.DATA.DEAL_COUNT3_0"></td>
  93. <td ng-bind="item.DATA.STOP_COUNT3_0"></td>
  94. <td ng-bind="item.DATA.DEAL_COUNT4_0"></td>
  95. <td ng-bind="item.DATA.STOP_COUNT4_0"></td>
  96. <td ng-bind="item.DATA.DEAL_COUNT5_0"></td>
  97. <td ng-bind="item.DATA.STOP_COUNT5_0"></td>
  98. <td ng-bind="item.DATA.DEAL_COUNT6_0"></td>
  99. <td ng-bind="item.DATA.STOP_COUNT6_0"></td>
  100. <td ng-bind="item.DATA.DEAL_COUNT7_0"></td>
  101. <td ng-bind="item.DATA.STOP_COUNT7_0"></td>
  102. <td ng-bind="item.DATA.DEAL_COUNT8_0"></td>
  103. <td ng-bind="item.DATA.STOP_COUNT8_0"></td>
  104. <td ng-bind="item.DATA.DEAL_COUNT9_0"></td>
  105. <td ng-bind="item.DATA.STOP_COUNT9_0"></td>
  106. </tr>
  107. </tbody>
  108. </table>
  109. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  110. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  111. </div>
  112. </div>
  113. <div class="sp-page" id="column"></div>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  123. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  124. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  125. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  126. <script src="../../apiurljs.js"></script>
  127. <script src="../../js/sm4.js"></script>
  128. <!-- 导出excel -->
  129. <script src="../gongzi/js/vendor/jquery.jqprint-0.3.js"></script>
  130. <script src="../gongzi/js/vendor/shim.min.js"></script>
  131. <script src="../gongzi/js/vendor/jszip.js"></script>
  132. <script src="../gongzi/js/vendor/xlsx.full.js"></script>
  133. <script src="../gongzi/js/vendor/Blob.js"></script>
  134. <script src="../gongzi/js/vendor/FileSaver.js"></script>
  135. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  136. <script>document.write('<scri' + 'pt src="js/list.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  137. <script src="../../AFrontEnd/js/special/spng.js"></script>
  138. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  139. </body>
  140. </html>