list.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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. span.sp-color-red {
  14. position: relative;
  15. animation: move 0.5s infinite;
  16. }
  17. @keyframes move {
  18. /*开始状态*/
  19. 0% {
  20. top: 0;
  21. }
  22. /*过渡状态*/
  23. 50% {
  24. top: -2px;
  25. }
  26. /*结束状态*/
  27. 100% {
  28. top: 0;
  29. }
  30. }
  31. .lcItem {
  32. background-color: #fff;
  33. height: 100px;
  34. text-align: center;
  35. padding: 5px 0;
  36. margin: 10px 0;
  37. border-radius: 5px;
  38. border: 1px solid #E1E6EB;
  39. box-shadow: 0px 2px 5px #E1E6EB;
  40. position: relative;
  41. cursor: pointer;
  42. }
  43. .cbd {
  44. float: right;
  45. position: absolute;
  46. top: 1px;
  47. right: 1px;
  48. }
  49. .activeLC {
  50. background: #4678ec;
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <div ng-controller="listCtrl as ctl" ng-cloak>
  56. <div class="loading" ng-if="ctl.loading">
  57. <div class="loading-msg">
  58. <h3>数据加载中,请等待</h3>
  59. <div class="spinner">
  60. <div class="bounce1"></div>
  61. <div class="bounce2"></div>
  62. <div class="bounce3"></div>
  63. </div>
  64. </div>
  65. </div>
  66. <div class="wrapper wrapper-content">
  67. <div class="row">
  68. <div class="col-md-12">
  69. <div class="ibox float-e-margins">
  70. <div class="ibox-content">
  71. <div class="row">
  72. <div class="col-md-12">
  73. <div class="sp-page-tab">
  74. <span ng-class="{'pageTabActive':ctl.type=='todo'}" style="font-weight: 900; " ng-click="ctl.changeType('todo')"><img src="../flowchart_app_imgcss/img/db-black.png" width="20" ng-if="ctl.type!='todo'" style="position:relative;left:-10px" /><img src="../flowchart_app_imgcss/img/db-blue.png" width="20" ng-if="ctl.type=='todo'" style="position:relative;left:-10px" /> 待&nbsp;办</span>
  75. <span ng-class="{'pageTabActive':ctl.type=='done'}" style="font-weight: 900; " ng-click="ctl.changeType('done')"><img src="../flowchart_app_imgcss/img/yb-black.png" width="20" ng-if="ctl.type!='done'" style="position:relative;left:-10px" /><img src="../flowchart_app_imgcss/img/yb-blue.png" width="20" ng-if="ctl.type=='done'" style="position:relative;left:-10px" /> 已&nbsp;办</span>
  76. <span ng-class="{'pageTabActive':ctl.type=='finish'}" style="font-weight: 900; " ng-click="ctl.changeType('finish')"><img src="../flowchart_app_imgcss/img/gd-black.png" width="20" ng-if="ctl.type!='finish'" style="position:relative;left:-10px" /><img src="../flowchart_app_imgcss/img/gd-blue.png" width="20" ng-if="ctl.type=='finish'" style="position:relative;left:-10px" /> 办&nbsp;结</span>
  77. <div class="sp-pull-right">
  78. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-click="ctl.refresh()">
  79. <i class="fa fa-refresh sp-mr-5"></i>刷 新
  80. </a>
  81. <a class="sp-pull-right sp-btn-gray sp-btn-radius" ng-if="ctl.lcList.length>0" ng-click="ctl.addLC()">
  82. <i class="fa fa-plus sp-mr-5"></i>新 建
  83. </a>
  84. <a class="sp-pull-right sp-btn-gray" ng-click="ctl.openLayer()">
  85. <i class="fa fa-search sp-mr-5"></i>筛 选
  86. </a>
  87. </div>
  88. </div>
  89. <div class="sp-page">
  90. <table class="sp-table sp-mt-10">
  91. <thead>
  92. <tr>
  93. <th width="200">流程名称</th>
  94. <th width="200">编号</th>
  95. <th>标题</th>
  96. <th width="200">当前节点</th>
  97. <th width="180">接收时间</th>
  98. <th class="sp-text-center" style="width: 180px;">操 作</th>
  99. </tr>
  100. </thead>
  101. <tbody>
  102. <tr dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
  103. <td ng-bind="item.FLOWNAME"></td>
  104. <td ng-bind="item.APPCODE"></td>
  105. <td>
  106. <a ng-click="ctl.goUrl(item)" title="{{item.TITLE}}"
  107. ng-bind="item.TITLE" class="sp-color-blue"></a>
  108. <span class="sp-color-red" ng-if="item.STATUS==1">未读</span>
  109. </td>
  110. <td ng-bind="item.ENDNODENAME"></td>
  111. <td ng-bind="item.RECEIVEDATE"></td>
  112. <td class="sp-text-center">
  113. <button class="sp-btn-blue sp-btn-sm sp-radius" ng-click="ctl.goUrl(item)" ng-if="ctl.type=='todo'">办&nbsp;理</button>
  114. <button class="sp-btn-blue sp-btn-sm sp-radius" ng-click="ctl.goUrl(item)" ng-if="ctl.type!='todo'">查&nbsp;看</button>
  115. <button class="sp-btn-red sp-btn-sm sp-radius" ng-click="ctl.btnDel(item)" ng-if="item.STATUS=='0'">删&nbsp;除</button>
  116. <button class="sp-btn-red sp-btn-sm sp-radius" ng-click="ctl.btnRecall(item.USERS[0].ROUTEID)" ng-if="(item.USERS[0].STATUS=='1'||item.USERS[0].STATUS=='2')&&ctl.type=='done'">撤&nbsp;回</button>
  117. </td>
  118. </tr>
  119. </tbody>
  120. </table>
  121. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  122. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  123. </div>
  124. <div class="sp-page" ng-show="ctl.noDataTip != 0">
  125. <div class="sp-page-col sp-pull-right">
  126. <div class="sp-lh-34">
  127. 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
  128. ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
  129. </div>
  130. </div>
  131. <div class="sp-page-col sp-pull-right">
  132. <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
  133. on-page-change="ctl.getData(newPageNumber)">
  134. </dir-pagination-controls>
  135. </div>
  136. </div>
  137. </div>
  138. </div>
  139. </div>
  140. </div>
  141. </div>
  142. </div>
  143. </div>
  144. </div>
  145. <div class="sp-layer" id="addLC" style="width: 1020px;">
  146. <div class="sp-layer-head" style="background:#2176d6">
  147. <div class="sp-page sp-text-center sp-font16">
  148. 新建流程
  149. <div class="sp-layer-close" title="关闭" onclick="sp.closeCenter('.sp-layer')">
  150. ×
  151. </div>
  152. </div>
  153. </div>
  154. <div class="sp-layer-body">
  155. <div class="sp-page" style="max-height:500px;overflow:auto">
  156. <div ng-repeat="item in ctl.lcList" class="sp-col-25" ng-class="{'activeLC':ctl.activeLC.FLOWID==item.FLOWID}" ng-click="ctl.activeLC=item">
  157. <div class="lcItem">
  158. <div class="sp-page" style="width:30%;padding:5px">
  159. <img src="../flowchart_app_imgcss/img/addLC.png" width="45" />
  160. <div class="sp-page sp-mt-10">
  161. <span class="sp-btn-blue-outline" style="padding:2px 5px;margin:0" ng-click="ctl.seeLCT(item,$event)">流程图</span>
  162. </div>
  163. </div>
  164. <div class="sp-page" style="width:70%">
  165. <img class="cbd" src="../flowchart_app_imgcss/img/cbd.png" />
  166. <div class="sp-box" style="width:90%">
  167. {{item.FLOWNAME}}
  168. </div>
  169. <div class="sp-line-gray"></div>
  170. <div class="sp-page sp-color-gray sp-fs-12" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis" title="{{item.FLOWNAME}}">
  171. 介绍:{{item.FLOWNAME}}
  172. </div>
  173. </div>
  174. </div>
  175. </div>
  176. </div>
  177. <div class="sp-page sp-text-center sp-mt-20">
  178. <a class="sp-btn-blue sp-radius" ng-click="ctl.goAddUrl()"><i class="fa fa-check sp-mr-5"></i>确 定</a>
  179. <a class="sp-btn-blue sp-radius" onclick="sp.layerhide()"><i class="fa fa-close sp-mr-5"></i>取 消</a>
  180. </div>
  181. </div>
  182. </div>
  183. <div class="sp-layer" id="Search" style="width: 550px;">
  184. <div class="sp-layer-head" style="background:#2176d6">
  185. <div class="sp-page sp-text-center sp-font16">
  186. 筛选
  187. <div class="sp-layer-close" title="关闭" onclick="sp.closeCenter('.sp-layer')">
  188. ×
  189. </div>
  190. </div>
  191. </div>
  192. <div class="sp-layer-body">
  193. <table class="sp-grid-job">
  194. <tbody>
  195. <tr>
  196. <td style="width:120px;">流程名称</td>
  197. <td colspan="2">
  198. <label class="sp-col-25 sp-text-left" title="{{item.NAME}}" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:pointer" ng-repeat="item in ctl.flowids">
  199. <input type="checkbox" ng-model="item.checked" />&nbsp;{{item.NAME}}
  200. </label>
  201. </td>
  202. </tr>
  203. <tr>
  204. <td style="width:120px;">标题</td>
  205. <td colspan="2">
  206. <input type="text" class="sp-input" placeholder="请输入标题" ng-model="ctl.search.BT" />
  207. </td>
  208. </tr>
  209. <tr>
  210. <td style="width:120px;">人员名称</td>
  211. <td colspan="2">
  212. <input type="text" class="sp-input" placeholder="请输入人员名称" ng-model="ctl.search.USER" />
  213. </td>
  214. </tr>
  215. <tr>
  216. <td style="width:120px;">时间</td>
  217. <td>
  218. <input type="text" class="sp-input laydate-logo" sp-laydate placeholder="请输入开始时间" ng-model="ctl.search.DATE1" />
  219. </td>
  220. <td>
  221. <input type="text" class="sp-input laydate-logo" sp-laydate placeholder="请输入结束时间" ng-model="ctl.search.DATE2" />
  222. </td>
  223. </tr>
  224. </tbody>
  225. </table>
  226. <div class="sp-page sp-text-center sp-mt-20">
  227. <a class="sp-btn-blue sp-radius" ng-click="ctl.doSearch()"><i class="fa fa-check sp-mr-5"></i>确 定</a>
  228. <a class="sp-btn-blue sp-radius" ng-click="ctl.cancal()"><i class="fa fa-refresh sp-mr-5"></i>重 置</a>
  229. </div>
  230. </div>
  231. </div>
  232. </div>
  233. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  234. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  235. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  236. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  237. <script src="../../apiurljs.js"></script>
  238. <script src="../../js/sm4.js"></script>
  239. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  240. <script>document.write('<scri' + 'pt src="js/list.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  241. <script src="../../AFrontEnd/js/special/spng.js"></script>
  242. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  243. </body>
  244. </html>