list.html 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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. </tr>
  68. </thead>
  69. <tbody>
  70. <tr dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
  71. <td><input type="checkbox" ng-model="item.checked" /></td>
  72. <td ng-bind="item.FLOWNAME"></td>
  73. <td>
  74. <div class="sp-page" style="max-width:400px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis">
  75. <a ng-bind="item.TITLE" ng-click="ctl.goUrl(item)"></a>
  76. </div>
  77. </td>
  78. <td ng-bind="item.userStr"></td>
  79. <td ng-bind="item.APPDATE"></td>
  80. <td ng-bind="item.STATUSINFO_CN"></td>
  81. </tr>
  82. </tbody>
  83. </table>
  84. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  85. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  86. </div>
  87. <div class="sp-page" ng-show="ctl.noDataTip != 0">
  88. <div class="sp-page-col sp-pull-right">
  89. <div class="sp-lh-34">
  90. 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
  91. ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
  92. </div>
  93. </div>
  94. <div class="sp-page-col sp-pull-right">
  95. <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
  96. on-page-change="ctl.getData(newPageNumber)">
  97. </dir-pagination-controls>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. <div class="ibox-content sp-mt-30">
  108. <div class="row">
  109. <div class="col-md-12">
  110. <div class="sp-page-tab">
  111. <div class="sp-page-col">
  112. <div class="sp-page-title" style="margin:7px 0;">
  113. 回收站
  114. </div>
  115. </div>
  116. <div class="sp-pull-right">
  117. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.btnDel_del()">
  118. <i class="fa fa-trash sp-mr-5"></i>彻底删除
  119. </a>
  120. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.refresh_del()">
  121. <i class="fa fa-refresh sp-mr-5"></i>恢 复
  122. </a>
  123. </div>
  124. <div class="sp-table sp-mt-10" style="max-height: 400px;overflow-y: auto;" ng-show="ctl.noDataTip_del != 0">
  125. <table class="sp-table" >
  126. <thead>
  127. <tr>
  128. <th width="50"><input type="checkbox" ng-checked="ctl.checkAll_del" ng-click="ctl.checkAllItem_del()" /></th>
  129. <th>在办人</th>
  130. <th>发起时间</th>
  131. <th>流程</th>
  132. <th width="400">标题</th>
  133. <th>状态</th>
  134. </tr>
  135. </thead>
  136. <tbody>
  137. <tr ng-repeat="item in ctl.list_del">
  138. <td><input type="checkbox" ng-model="item.checked" /></td>
  139. <td ng-bind="item.userStr"></td>
  140. <td ng-bind="item.APPDATE"></td>
  141. <td ng-bind="item.FLOWNAME"></td>
  142. <td ng-bind="item.TITLE"></td>
  143. <td ng-bind="item.STATUSINFO_CN"></td>
  144. </tr>
  145. </tbody>
  146. </table>
  147. </div>
  148. <div ng-show="ctl.noDataTip_del == 0">
  149. <table class="sp-table" >
  150. <thead>
  151. <tr>
  152. <th width="50"><input type="checkbox" ng-checked="ctl.checkAll_del" ng-click="ctl.checkAllItem_del()" /></th>
  153. <th>在办人</th>
  154. <th>发起时间</th>
  155. <th>流程</th>
  156. <th width="400">标题</th>
  157. <th>状态</th>
  158. </tr>
  159. </thead>
  160. </table>
  161. <div class="sp-table-tip ng-hide">
  162. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167. </div>
  168. </div>
  169. </div>
  170. <div class="sp-layer" id="Search" style="width: 550px;">
  171. <div class="sp-layer-head" style="background:#2176d6">
  172. <div class="sp-page sp-text-center sp-font16">
  173. 查询
  174. <div class="sp-layer-close" title="关闭" onclick="sp.closeCenter('.sp-layer')">
  175. ×
  176. </div>
  177. </div>
  178. </div>
  179. <div class="sp-layer-body">
  180. <table class="sp-grid-job">
  181. <tbody>
  182. <tr>
  183. <td style="width:120px;">标题</td>
  184. <td>
  185. <input type="text" class="sp-input" ng-model="ctl.search.title" />
  186. </td>
  187. </tr>
  188. <tr>
  189. <td style="width:120px;">发起时间</td>
  190. <td>
  191. <input type="text" class="sp-input laydate-logo" sp-laydate ng-model="ctl.search.startdate_" />
  192. </td>
  193. </tr>
  194. <tr>
  195. <td style="width:120px;">结束时间</td>
  196. <td>
  197. <input type="text" class="sp-input laydate-logo" sp-laydate ng-model="ctl.search.enddate_" />
  198. </td>
  199. </tr>
  200. </tbody>
  201. </table>
  202. <div class="sp-page sp-text-center sp-mt-20">
  203. <a class="sp-btn-blue sp-radius" ng-click="ctl.doSearch()"><i class="fa fa-check sp-mr-5"></i>确 定</a>
  204. <a class="sp-btn-blue sp-radius" onclick="sp.layerhide()"><i class="fa fa-refresh sp-mr-5"></i>关 闭</a>
  205. </div>
  206. </div>
  207. </div>
  208. </div>
  209. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  210. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  211. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  212. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  213. <script src="../../apiurljs.js"></script>
  214. <script src="../../js/sm4.js"></script>
  215. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  216. <script>document.write('<scri' + 'pt src="js/list.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  217. <script src="../../AFrontEnd/js/special/spng.js"></script>
  218. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  219. </body>
  220. </html>