flow_main.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  8. <title>审批</title>
  9. <link href="../../css/mui.min.css" rel="stylesheet" />
  10. <link href="../../css/OA-style.css" rel="stylesheet" />
  11. <style type="text/css">
  12. .mui-content>.mui-table-view:first-child {
  13. margin-top: -1px;
  14. }
  15. .mui-bar {
  16. box-shadow: none;
  17. }
  18. .mui-table-view-cell.mui-active {
  19. background-color: #fff;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <!--<header class="mui-bar mui-bar-nav">
  25. <a class="mui-action-back back mui-pull-left" id=""><img src="../../images/back.png"></a>
  26. <h1 class="mui-title">流程管理</h1>
  27. </header>-->
  28. <div class="mui-content" id="flowList">
  29. <div class="porcess mui-clearfix">
  30. <div class="mui-pull-left porcess_item">
  31. <a href="#" onclick="to_deal(0)">
  32. <img src="../../images/sp_wspd.png" height="32px;">
  33. <p>待办流程</p>
  34. </a>
  35. </div>
  36. <div class="mui-pull-left porcess_item">
  37. <a href="#" onclick="to_deal(1)">
  38. <img src="../../images/sp_wfqd.png" height="32px;">
  39. <p>在办流程</p>
  40. </a>
  41. </div>
  42. <div class="mui-pull-left porcess_item">
  43. <a href="#" onclick="to_deal(2)">
  44. <img src="../../images/sp_yjbxl.png" height="32px;">
  45. <p>办结流程</p>
  46. </a>
  47. </div>
  48. <div class="mui-pull-left porcess_item">
  49. <a href="#" onclick="to_deal(3)">
  50. <img src="../../images/txl_bm.png" height="32px;">
  51. <p>我的请求</p>
  52. </a>
  53. </div>
  54. <div class="mui-pull-left porcess_item">
  55. <a href="#" onclick="to_deal(4)">
  56. <img src="../../images/sp_cswd.png" height="32px;">
  57. <p>抄送我的</p>
  58. </a>
  59. </div>
  60. </div>
  61. <ul class="mui-table-view " v-for="ftype in ftypeList">
  62. <li class="mui-table-view-cell mui-collapse ">
  63. <a class="mui-navigate-right " href="# " style="color: #444; font-size: 14px; line-height: 26px; ">{{ftype.typeName}}
  64. </a>
  65. <div class="mui-collapse-content mui-clearfix ">
  66. <div class="address_list_4 mui-pull-left " v-for="flow in fList" v-if="flow.typeId.typeId == ftype.typeId" style="height: 100px;padding: 15px 0px;">
  67. <a v-on:click="to_strt(flow)">
  68. <img v-bind:src='flow.modelPicture' width="32px; ">
  69. <p>{{flow.modelName}}</p>
  70. </a>
  71. </div>
  72. </div>
  73. </li>
  74. </ul>
  75. </div>
  76. <script src="../../js/mui.min.js "></script>
  77. <script src="../../js/config.js"></script>
  78. <script src="../../js/app.js"></script>
  79. <script src="../../js/vue.min.js"></script>
  80. <script src="../../js/dj/flow/flow_main.js"></script>
  81. <script>
  82. function to_deal(obj) {
  83. var page = "";
  84. if(obj == 0) {
  85. page = "flow_deal_list.html";
  86. } else if(obj == 1) {
  87. page = "flow_dealing_list.html";
  88. } else if(obj == 2) {
  89. page = "flow_dealed_list.html";
  90. } else if(obj == 3) {
  91. page = "flow_my_list.html";
  92. } else if(obj == 4) {
  93. page = "flow_sendFlow_list.html";
  94. }
  95. mui.openWindow({
  96. createNew: true,
  97. url: page
  98. });
  99. }
  100. </script>
  101. </body>
  102. </html>