list.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. .lcItem {
  14. background-color: #fff;
  15. height: 100px;
  16. text-align: center;
  17. padding: 5px 0;
  18. margin: 10px 0;
  19. border-radius: 5px;
  20. border: 1px solid #E1E6EB;
  21. box-shadow: 0px 2px 5px #E1E6EB;
  22. position: relative;
  23. cursor: pointer;
  24. }
  25. .cbd {
  26. float: right;
  27. position: absolute;
  28. top: 1px;
  29. right: 1px;
  30. }
  31. .activeLC {
  32. background: #4678ec;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div ng-controller="listCtrl as ctl" ng-cloak>
  38. <div class="wrapper wrapper-content">
  39. <div class="row">
  40. <div class="col-md-12">
  41. <div class="ibox float-e-margins">
  42. <div class="ibox-content">
  43. <div class="row">
  44. <div class="col-md-12">
  45. <div class="sp-page">
  46. <button class="sp-btn-blue sp-pull-right" style="margin:3px" ng-click="ctl.getData(1)">查询</button>
  47. <div class="sp-page sp-span3 sp-pull-right sp-lh-30">
  48. <select class="sp-select" ng-model="ctl.search.TYPE" ng-change="ctl.changeType()">
  49. <option value="1">本月</option>
  50. <option value="2">本季度</option>
  51. <option value="3">本年</option>
  52. <option value="4">自定义</option>
  53. </select>
  54. </div>
  55. <div class="sp-page sp-span3 sp-pull-right sp-ml-20 sp-lh-30" ng-if="ctl.search.TYPE==4">
  56. 结束时间:
  57. <input type="text" class="sp-input laydate-logo" sp-laydate style="width:150px" ng-model="ctl.search.JSSJ" />
  58. </div>
  59. <div class="sp-page sp-span3 sp-pull-right sp-ml-20 sp-lh-30" ng-if="ctl.search.TYPE==4">
  60. 开始时间:
  61. <input type="text" class="sp-input laydate-logo" sp-laydate style="width:150px" ng-model="ctl.search.KSSJ" />
  62. </div>
  63. <div class="sp-line-gray"></div>
  64. </div>
  65. <div class="sp-box sp-fs-20">信访统计<span class="sp-btn-blue sp-fs-16 sp-btn-sm sp-radius sp-pull-right" ng-click="ctl.btnPrint1()">导出</span></div>
  66. <div class="sp-page">
  67. <div class="sp-page" style="width:100%;max-height:300px;overflow-y:auto">
  68. <table class="sp-table sp-mt-10" id="printOut1">
  69. <thead>
  70. <tr>
  71. <th rowspan="3">部门</th>
  72. <th colspan="10" style="border-bottom: 1px solid #E1E6EB">信访渠道</th>
  73. <th colspan="4" style="border-bottom: 1px solid #E1E6EB">来源流程</th>
  74. </tr>
  75. <tr>
  76. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">来信渠道</th>
  77. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">来电渠道</th>
  78. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">来访渠道</th>
  79. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">网络渠道</th>
  80. <th colspan="2" style="border-bottom: 1px solid #E1E6EB">小计</th>
  81. <th rowspan="2">办理中</th>
  82. <th rowspan="2">完结</th>
  83. <th rowspan="2">超期</th>
  84. <th rowspan="2">延期</th>
  85. </tr>
  86. <tr>
  87. <th>件次</th>
  88. <th>人次</th>
  89. <th>件次</th>
  90. <th>人次</th>
  91. <th>件次</th>
  92. <th>人次</th>
  93. <th>件次</th>
  94. <th>人次</th>
  95. <th>件次</th>
  96. <th>人次</th>
  97. </tr>
  98. </thead>
  99. <tbody>
  100. <tr ng-repeat="item in ctl.list1">
  101. <td ng-bind="item.dpname"></td>
  102. <td ng-bind="item.lxqdjc"></td>
  103. <td ng-bind="item.lxqdrc"></td>
  104. <td ng-bind="item.ldqdjc"></td>
  105. <td ng-bind="item.ldqdrc"></td>
  106. <td ng-bind="item.lfqdjc"></td>
  107. <td ng-bind="item.lfqdrc"></td>
  108. <td ng-bind="item.wlqdjc"></td>
  109. <td ng-bind="item.wlqdrc"></td>
  110. <td ng-bind="item.jctotal"></td>
  111. <td ng-bind="item.rctotal"></td>
  112. <td ng-bind="item.blz"></td>
  113. <td ng-bind="item.wj"></td>
  114. <td ng-bind="item.cq"></td>
  115. <td ng-bind="item.yq"></td>
  116. </tr>
  117. </tbody>
  118. </table>
  119. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  120. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  121. </div>
  122. </div>
  123. </div>
  124. <div class="sp-page sp-mt-20">
  125. <div class="sp-page" style="width:32.333%;">
  126. <div class="sp-box sp-pl-20" style="background-color: #F0F8FF">
  127. <input type="text" class="sp-input" style="width: 200px" readonly value="部门占比图" />
  128. </div>
  129. <div class="sp-page" id="column"></div>
  130. </div>
  131. <div class="sp-page sp-pull-left" style="width: 32.333%; margin-left: 1%;">
  132. <div class="sp-box sp-pl-20" style="background-color: #F0F8FF">
  133. <input type="text" class="sp-input" style="width: 200px" readonly value="信访渠道占比图" />
  134. </div>
  135. <div class="sp-page" id="pie2"></div>
  136. </div>
  137. <div class="sp-page" style="width: 32.333%; margin-left:1%;">
  138. <div class="sp-box sp-pl-20" style="background-color: #F0F8FF">
  139. <input type="text" class="sp-input" style="width: 200px" readonly value="来源流程占比图" />
  140. </div>
  141. <div class="sp-page" id="pie1"></div>
  142. </div>
  143. </div>
  144. <div class="sp-box sp-fs-20 sp-mt-30">政民零距离统计<span class="sp-btn-blue sp-fs-16 sp-btn-sm sp-radius sp-pull-right" ng-click="ctl.btnPrint2()">导出</span></div>
  145. <div class="sp-page">
  146. <div class="sp-page" style="width:50%;max-height:400px;overflow-y:auto">
  147. <table class="sp-table" id="printOut2">
  148. <thead>
  149. <tr>
  150. <th rowspan="2">部门</th>
  151. <th colspan="5" style="border-bottom: 1px solid #E1E6EB">信访渠道</th>
  152. </tr>
  153. <tr>
  154. <th style="border-bottom: 1px solid #E1E6EB">办理中</th>
  155. <th style="border-bottom: 1px solid #E1E6EB">完结</th>
  156. <th style="border-bottom: 1px solid #E1E6EB">超期</th>
  157. <th style="border-bottom: 1px solid #E1E6EB">延期</th>
  158. <th style="border-bottom: 1px solid #E1E6EB">小计</th>
  159. </tr>
  160. </thead>
  161. <tbody>
  162. <tr ng-repeat="item in ctl.list2">
  163. <td ng-bind="item.dpname"></td>
  164. <td ng-bind="item.blz"></td>
  165. <td ng-bind="item.wj"></td>
  166. <td ng-bind="item.cq"></td>
  167. <td ng-bind="item.yq"></td>
  168. <td ng-bind="item.total"></td>
  169. </tr>
  170. </tbody>
  171. </table>
  172. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  173. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  174. </div>
  175. </div>
  176. <div class="sp-page" style="width:49%; margin-left:1%;">
  177. <div class="sp-box sp-pl-20" style="background-color: #F0F8FF">
  178. <input type="text" class="sp-input" style="width: 200px" readonly value="政民零距离占比图" />
  179. </div>
  180. <div class="sp-page" id="bar"></div>
  181. </div>
  182. </div>
  183. </div>
  184. </div>
  185. </div>
  186. </div>
  187. </div>
  188. </div>
  189. </div>
  190. </div>
  191. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  192. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  193. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  194. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  195. <script src="../../AFrontEnd/plugins/hightcharts/highcharts.js"></script>
  196. <script src="../../AFrontEnd/plugins/hightcharts/no-data-to-display.js"></script>
  197. <script src="../../apiurljs.js"></script>
  198. <script src="../../js/sm4.js"></script>
  199. <!-- 导出excel -->
  200. <script src="../gongzi/js/vendor/jquery.jqprint-0.3.js"></script>
  201. <script src="../gongzi/js/vendor/shim.min.js"></script>
  202. <script src="../gongzi/js/vendor/jszip.js"></script>
  203. <script src="../gongzi/js/vendor/xlsx.full.js"></script>
  204. <script src="../gongzi/js/vendor/Blob.js"></script>
  205. <script src="../gongzi/js/vendor/FileSaver.js"></script>
  206. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  207. <script>document.write('<scri' + 'pt src="js/list.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  208. <script src="../../AFrontEnd/js/special/spng.js"></script>
  209. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  210. </body>
  211. </html>