apply_check.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{admin/common/common}">
  5. <head>
  6. <title>存量用地申请详情</title>
  7. <style>
  8. .line {
  9. display: block;
  10. text-align: left;
  11. background-color: #fff;
  12. color: #333;
  13. border-bottom: 1px solid #0a6999;
  14. border-color: #fff;
  15. border-bottom: 1px solid #0a6999;
  16. margin-top: 10px;
  17. vertical-align: middle;
  18. padding: 4px 12px;
  19. height: 31px;
  20. line-height: 31px;
  21. font-size: 14px;
  22. font-weight: bold;
  23. }
  24. </style>
  25. </head>
  26. <body layout:fragment="content">
  27. <article class="page-container">
  28. <form class="form form-horizontal" id="form-landApply-info">
  29. <input type="hidden" th:id="apply_id" th:name="apply_id" th:value="${landApply.id}"/>
  30. <div class="line">基本信息</div>
  31. <div class="row cl">
  32. <label class="form-label col-xs-4 col-sm-2"> 企业名称:</label>
  33. <div class="formControls col-xs-8 col-sm-4">
  34. [[${companyInfo.company_name}]]
  35. </div>
  36. <label class="form-label col-xs-4 col-sm-2"> 统一社会信用代码:</label>
  37. <div class="formControls col-xs-8 col-sm-4">
  38. [[${companyInfo.uscc}]]
  39. </div>
  40. </div>
  41. <div class="row cl">
  42. <label class="form-label col-xs-4 col-sm-2"> 组织机构代码:</label>
  43. <div class="formControls col-xs-8 col-sm-4">
  44. [[${companyInfo.organization_code}]]
  45. </div>
  46. <label class="form-label col-xs-4 col-sm-2"> 所属行业:</label>
  47. <div class="formControls col-xs-8 col-sm-4">
  48. [[${companyInfo.industry_code}]]
  49. </div>
  50. </div>
  51. <div class="row cl">
  52. <label class="form-label col-xs-4 col-sm-2"> 地址:</label>
  53. <div class="formControls col-xs-8 col-sm-4">
  54. [[${companyInfo.registration_address}]]
  55. </div>
  56. <label class="form-label col-xs-4 col-sm-2"> 联系人:</label>
  57. <div class="formControls col-xs-8 col-sm-4">
  58. [[${companyInfo.contact}]]
  59. </div>
  60. </div>
  61. <div class="row cl">
  62. <label class="form-label col-xs-4 col-sm-2"> 联系人职位:</label>
  63. <div class="formControls col-xs-8 col-sm-4">
  64. [[${companyInfo.contact_position}]]
  65. </div>
  66. <label class="form-label col-xs-4 col-sm-2"> 联系人手机:</label>
  67. <div class="formControls col-xs-8 col-sm-4">
  68. [[${companyInfo.contact_phone}]]
  69. </div>
  70. </div>
  71. <div class="line">存量用地申请</div>
  72. <div class="row cl">
  73. <label class="form-label col-xs-4 col-sm-2"> 申请类别:</label>
  74. <div class="formControls col-xs-8 col-sm-9">
  75. [[${landApply.apply_type_str}]]
  76. </div>
  77. </div>
  78. <div class="row cl" >
  79. <label class="form-label col-xs-4 col-sm-2">厂房所在属地:</label>
  80. <div class="formControls col-xs-8 col-sm-9">
  81. [[${landApply.building_street_name}]]
  82. </div>
  83. </div>
  84. <div th:if="${landApply.summary_procedure}" class="row cl">
  85. <label class="form-label col-xs-4 col-sm-2"> 简易程序类别:</label>
  86. <div class="formControls col-xs-8 col-sm-9">
  87. [[${landApply.summary_procedure_str}]]
  88. </div>
  89. </div>
  90. <div class="line">基准材料</div>
  91. <div class="row cl">
  92. <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
  93. <table class="table table-border table-bordered table-bg table-hover">
  94. <thead>
  95. <tr class="text-c">
  96. <th>编号</th>
  97. <th>内容</th>
  98. <th>下载材料</th>
  99. </tr>
  100. </thead>
  101. <tbody>
  102. <tr class="text-c" th:each="model,iterStat:${applyMaterials}" th:object="${model}">
  103. <td th:text="${iterStat.index+1}"></td>
  104. <td th:text="*{content}"></td>
  105. <td class="td_material" >
  106. <div th:if="*{fileDown}">
  107. <!-- <a th:href="${fileUrl} + *{fileDown.file_url}" data-fileUrl="*{fileDown.file_url}" target="_blank" onclick="getFile(this)" style="color: #5b98dd;">[[*{fileDown.file_name}]]</a>
  108. <a style="display:none;" class="href" href = "${fileUrl} + *{fileDown.file_url}" ></a> -->
  109. <a download="" th:href="${fileUrl} + *{fileDown.file_url}" target="_blank" style="color: #5b98dd;">[[*{fileDown.file_name}]]</a>
  110. </div>
  111. </td>
  112. </tr>
  113. </tbody>
  114. </table>
  115. </div>
  116. </div>
  117. <div th:if="${landApply.summary_procedure}" class="line">简易程序材料</div>
  118. <div th:if="${landApply.summary_procedure}" class="row cl" id="summaryMaterials">
  119. <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
  120. <table class="table table-border table-bordered table-bg table-hover ">
  121. <thead>
  122. <tr class="text-c">
  123. <th>编号</th>
  124. <th>上传材料</th>
  125. </tr>
  126. </thead>
  127. <tbody class="add_file_line">
  128. <tr class="text-c" th:each="model,iterStat:${summaryMaterials}" th:object="${model}" >
  129. <td th:text="${iterStat.index+1}"></td>
  130. <td class="td_material">
  131. <div th:if="*{fileDown}">
  132. <a th:href="${fileUrl} + *{fileDown.file_url}" target="_blank" style="color: #5b98dd;">[[*{fileDown.file_name}]]</a>
  133. </div>
  134. </td>
  135. </tr>
  136. </tbody>
  137. </table>
  138. </div>
  139. </div>
  140. <div class="line">其他材料</div>
  141. <div class="row cl" id="otherMaterials">
  142. <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
  143. <table class="table table-border table-bordered table-bg table-hover ">
  144. <thead>
  145. <tr class="text-c">
  146. <th>编号</th>
  147. <th>上传材料</th>
  148. </tr>
  149. </thead>
  150. <tbody class="add_file_line">
  151. <tr class="text-c" th:each="model,iterStat:${otherMaterials}" th:object="${model}" >
  152. <td th:text="${iterStat.index+1}"></td>
  153. <td class="td_material">
  154. <div th:if="*{fileDown}">
  155. <a th:href="${fileUrl} + *{fileDown.file_url}" target="_blank" style="color: #5b98dd;">[[*{fileDown.file_name}]]</a>
  156. </div>
  157. </td>
  158. </tr>
  159. </tbody>
  160. </table>
  161. </div>
  162. </div>
  163. <!--<div class="line">流程信息</div>
  164. <div class="row cl">
  165. <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
  166. <table class="table table-border table-bordered table-bg table-hover processTb">
  167. <thead>
  168. <tr class="text-c">
  169. <th style="width:15%;">时间</th>
  170. <th style="width:15%;">审核状态</th>
  171. <th style="width:10%;">部门</th>
  172. <th style="width:10%;">操作人</th>
  173. <th style="width:10%;">操作</th>
  174. <th style="width:15%;">材料</th>
  175. <th style="width:25%;">审核意见</th>
  176. </tr>
  177. </thead>
  178. <tbody>
  179. <tr class="text-c" th:each="model,iterStat:${approvalList}" th:object="${model}">
  180. <td th:text="*{create_time}"></td>
  181. <td th:text="*{before_approvalstatus_str}"></td>
  182. <td th:text="*{department}"></td>
  183. <td th:text="*{create_name}"></td>
  184. <td th:text="*{oper_type}"></td>
  185. <td class="td_material" >
  186. <div th:if="*{fileDowns}" >
  187. <a th:each="filedown,iterStat:*{fileDowns}" th:object="${filedown}" th:href="${fileUrl} + *{file_url}" target="_blank" style="color: #5b98dd;">[[*{file_name}]]<br/></a>
  188. </div>
  189. </td>
  190. <td th:text="*{approval_comment}"></td>
  191. </tr>
  192. </tbody>
  193. </table>
  194. </div>
  195. </div>-->
  196. <div class="line">流程节点</div>
  197. <div class="row cl">
  198. <ul class="steps" id="phaseGraph">
  199. <li data-step="1" class="active">
  200. <span class="step">1</span>
  201. <span class="title">Validation states</span>
  202. </li>
  203. </ul>
  204. </div>
  205. <div class="row cl">
  206. <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
  207. <button onClick="removeIframe();" class="btn btn-default radius" type="button">&nbsp;&nbsp;返回&nbsp;&nbsp;</button>
  208. </div>
  209. </div>
  210. </form>
  211. </article>
  212. <script th:inline="javascript">
  213. $(function(){
  214. initPhaseProgressGraph();
  215. });
  216. function initPhaseProgressGraph(){
  217. var list = [[${processNodesList}]]
  218. var is_reject = false;
  219. var html = '';
  220. var index = 0;
  221. for (var i = 0; i < list.length; i++) {
  222. index += 1;
  223. html +='<li data-step="1" class="'+(list[i].is_reject?'red':'')+'"><span class="step">'+index+'</span><span class="title">'+list[i].node_item.name+'</span></li>';
  224. }
  225. $("#phaseGraph").html(html);
  226. if($(".steps li").length==1){
  227. $(".steps li").addClass("one");
  228. }else{
  229. $(".steps li").eq($(".steps li").length-1).addClass("end");
  230. }
  231. }
  232. /**
  233. * 取消
  234. */
  235. function removeIframe(){
  236. var index = parent.layer.getFrameIndex(window.name);
  237. parent.layer.close(index);
  238. }
  239. /* function getFile(obj){
  240. var url = $(obj).data("href");
  241. var file_url = $(obj).data("file_Url");
  242. $.ajax({
  243. type: "GET",
  244. dataType: "json",
  245. url: url,
  246. success: function(){
  247. //触发href
  248. $(obj).next(".href").click();
  249. },
  250. statusCode: {
  251. 404: function (data) {
  252. //更改 url,触发href
  253. var url = "http://192.168.173.17:80" + file_url;
  254. $(obj).next(".href").attr("href",url);
  255. $(obj).next(".href").click();
  256. }
  257. }
  258. });
  259. } */
  260. </script>
  261. </body>
  262. </html>