list.html 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
  11. <style>
  12. .selectNow {
  13. background-color: #008a94;
  14. color: #fff !important;
  15. }
  16. .selectNow:hover {
  17. background-color: #008a94;
  18. color: #fff !important;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div ng-controller="listCtrl as ctl" ng-cloak>
  24. <div class="loading" ng-if="ctl.loading">
  25. <div class="loading-msg">
  26. <h3>数据加载中,请等待</h3>
  27. <div class="spinner">
  28. <div class="bounce1"></div>
  29. <div class="bounce2"></div>
  30. <div class="bounce3"></div>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="wrapper wrapper-content">
  35. <div class="row">
  36. <div class="col-md-12">
  37. <div class="ibox float-e-margins">
  38. <div class="ibox-content">
  39. <div class="row">
  40. <div class="col-md-12">
  41. <div class="sp-page-tab">
  42. <div class="sp-page-col">
  43. <div class="sp-page-title" style="margin:7px 0;">
  44. 超级管理
  45. </div>
  46. </div>
  47. <div class="sp-pull-right">
  48. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.btnDel()">
  49. <i class="fa fa-trash sp-mr-5"></i>删 除
  50. </a>
  51. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.refresh()">
  52. <i class="fa fa-refresh sp-mr-5"></i>刷 新
  53. </a>
  54. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.openSearch()">
  55. <i class="fa fa-search sp-mr-5"></i>查 询
  56. </a>
  57. </div>
  58. <table class="sp-table sp-mt-10">
  59. <thead>
  60. <tr>
  61. <th width="50"><input type="checkbox" ng-checked="ctl.checkAll" ng-click="ctl.checkAllItem()" /></th>
  62. <th>流程</th>
  63. <th width="400">标题</th>
  64. <th>在办人</th>
  65. <th>发起时间</th>
  66. <th>状态</th>
  67. <th>操作</th>
  68. </tr>
  69. </thead>
  70. <tbody>
  71. <tr dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
  72. <td><input type="checkbox" ng-model="item.checked" /></td>
  73. <td ng-bind="item.FLOWNAME"></td>
  74. <td>
  75. <div class="sp-page" style="max-width:400px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis">
  76. <a ng-bind="item.TITLE" ng-click="ctl.goUrl(item)"></a>
  77. </div>
  78. </td>
  79. <td ng-bind="item.userStr"></td>
  80. <td ng-bind="item.APPDATE"></td>
  81. <td ng-bind="item.STATUSINFO_CN"></td>
  82. <td><button class="sp-btn-blue" ng-click="ctl.goUrl(item)">办理</button></td>
  83. </tr>
  84. </tbody>
  85. </table>
  86. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  87. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  88. </div>
  89. <div class="sp-page" ng-show="ctl.noDataTip != 0">
  90. <div class="sp-page-col sp-pull-right">
  91. <div class="sp-lh-34">
  92. 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
  93. ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
  94. </div>
  95. </div>
  96. <div class="sp-page-col sp-pull-right">
  97. <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
  98. on-page-change="ctl.getData(newPageNumber)">
  99. </dir-pagination-controls>
  100. </div>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. </div>
  109. <div class="ibox-content sp-mt-30">
  110. <div class="row">
  111. <div class="col-md-12">
  112. <div class="sp-page-tab">
  113. <div class="sp-page-col">
  114. <div class="sp-page-title" style="margin:7px 0;">
  115. 回收站
  116. </div>
  117. </div>
  118. <div class="sp-pull-right">
  119. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.btnDel_del()">
  120. <i class="fa fa-trash sp-mr-5"></i>彻底删除
  121. </a>
  122. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.refresh_del()">
  123. <i class="fa fa-refresh sp-mr-5"></i>恢 复
  124. </a>
  125. </div>
  126. <div class="sp-table sp-mt-10" style="max-height: 400px;overflow-y: auto;" ng-show="ctl.noDataTip_del != 0">
  127. <table class="sp-table" >
  128. <thead>
  129. <tr>
  130. <th width="50"><input type="checkbox" ng-checked="ctl.checkAll_del" ng-click="ctl.checkAllItem_del()" /></th>
  131. <th>在办人</th>
  132. <th>发起时间</th>
  133. <th>流程</th>
  134. <th width="400">标题</th>
  135. <th>状态</th>
  136. </tr>
  137. </thead>
  138. <tbody>
  139. <tr ng-repeat="item in ctl.list_del">
  140. <td><input type="checkbox" ng-model="item.checked" /></td>
  141. <td ng-bind="item.userStr"></td>
  142. <td ng-bind="item.APPDATE"></td>
  143. <td ng-bind="item.FLOWNAME"></td>
  144. <td ng-bind="item.TITLE"></td>
  145. <td ng-bind="item.STATUSINFO_CN"></td>
  146. </tr>
  147. </tbody>
  148. </table>
  149. </div>
  150. <div ng-show="ctl.noDataTip_del == 0">
  151. <table class="sp-table" >
  152. <thead>
  153. <tr>
  154. <th width="50"><input type="checkbox" ng-checked="ctl.checkAll_del" ng-click="ctl.checkAllItem_del()" /></th>
  155. <th>在办人</th>
  156. <th>发起时间</th>
  157. <th>流程</th>
  158. <th width="400">标题</th>
  159. <th>状态</th>
  160. </tr>
  161. </thead>
  162. </table>
  163. <div class="sp-table-tip ng-hide">
  164. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  165. </div>
  166. </div>
  167. </div>
  168. </div>
  169. </div>
  170. </div>
  171. </div>
  172. <div class="sp-layer" id="Search" style="width: 550px;">
  173. <div class="sp-layer-head" style="background:#2176d6">
  174. <div class="sp-page sp-text-center sp-font16">
  175. 查询
  176. <div class="sp-layer-close" title="关闭" onclick="sp.closeCenter('.sp-layer')">
  177. ×
  178. </div>
  179. </div>
  180. </div>
  181. <div class="sp-layer-body">
  182. <table class="sp-grid-job">
  183. <tbody>
  184. <tr>
  185. <td style="width:120px;">标题</td>
  186. <td>
  187. <input type="text" class="sp-input" ng-model="ctl.search.title" />
  188. </td>
  189. </tr>
  190. <tr>
  191. <td style="width:120px;">发起时间</td>
  192. <td>
  193. <input type="text" class="sp-input laydate-logo" sp-laydate ng-model="ctl.search.startdate_" />
  194. </td>
  195. </tr>
  196. <tr>
  197. <td style="width:120px;">结束时间</td>
  198. <td>
  199. <input type="text" class="sp-input laydate-logo" sp-laydate ng-model="ctl.search.enddate_" />
  200. </td>
  201. </tr>
  202. </tbody>
  203. </table>
  204. <div class="sp-page sp-text-center sp-mt-20">
  205. <a class="sp-btn-blue sp-radius" ng-click="ctl.doSearch()"><i class="fa fa-check sp-mr-5"></i>确 定</a>
  206. <a class="sp-btn-blue sp-radius" onclick="sp.layerhide()"><i class="fa fa-refresh sp-mr-5"></i>关 闭</a>
  207. </div>
  208. </div>
  209. </div>
  210. </div>
  211. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  212. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  213. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  214. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  215. <script src="../../apiurljs.js"></script>
  216. <script src="../../js/sm4.js"></script>
  217. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  218. <script>document.write('<scri' + 'pt src="js/list.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  219. <script src="../../AFrontEnd/js/special/spng.js"></script>
  220. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  221. </body>
  222. </html>