| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>存量用地审核详情</title>
- <style>
- .line {
- display: block;
- text-align: left;
- background-color: #fff;
- color: #333;
- border-bottom: 1px solid #0a6999;
- border-color: #fff;
- border-bottom: 1px solid #0a6999;
- margin-top: 10px;
- vertical-align: middle;
- padding: 4px 12px;
- height: 31px;
- line-height: 31px;
- font-size: 14px;
- font-weight: bold;
- }
- </style>
- </head>
- <body layout:fragment="content">
- <article class="page-container">
- <form class="form form-horizontal" id="form-landApprove-info">
- <input type="hidden" th:id="apply_id" th:name="apply_id" th:value="${landApply.id}"/>
- <div class="line">基本信息</div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"> 企业名称:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.company_name}]]
- </div>
- <label class="form-label col-xs-4 col-sm-2"> 统一社会信用代码:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.uscc}]]
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"> 组织机构代码:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.organization_code}]]
- </div>
- <label class="form-label col-xs-4 col-sm-2"> 所属行业:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.industry_code}]]
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"> 地址:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.registration_address}]]
- </div>
- <label class="form-label col-xs-4 col-sm-2"> 联系人:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.contact}]]
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"> 联系人职位:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.contact_position}]]
- </div>
- <label class="form-label col-xs-4 col-sm-2"> 联系人手机:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${companyInfo.contact_phone}]]
- </div>
- </div>
- <div class="line">存量用地申请</div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"> 申请类别:</label>
- <div class="formControls col-xs-8 col-sm-9">
- [[${landApply.apply_type_str}]]
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2">厂房所在属地:</label>
- <div class="formControls col-xs-8 col-sm-9">
- [[${landApply.building_street_name}]]
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"> 审核状态:</label>
- <div class="formControls col-xs-8 col-sm-9">
- [[${landApply.approve_status_str}]]
- </div>
- </div>
- <div th:if="${landApply.summary_procedure}" class="row cl">
- <label class="form-label col-xs-4 col-sm-2"> 简易程序类别:</label>
- <div class="formControls col-xs-8 col-sm-9">
- [[${landApply.summary_procedure_str}]]
- </div>
- </div>
- <div class="line">基准材料</div>
- <div class="row cl">
- <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
- <table class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr class="text-c">
- <th>编号</th>
- <th>内容</th>
- <th>下载材料</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${applyMaterials}" th:object="${model}">
- <td th:text="${iterStat.index+1}"></td>
- <td th:text="*{content}"></td>
- <td class="td_material">
- <div th:if="*{fileDown}">
- <!-- th:href="{fileDown.download_uri} + *{fileDown.file_url}" -->
- <a download th:href="${fileUrl} + *{fileDown.file_url}" target="_blank"
- style="color: #5b98dd;">[[*{fileDown.file_name}]]</a>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div th:if="${landApply.summary_procedure}" class="line">简易程序材料</div>
- <div th:if="${landApply.summary_procedure}" class="row cl" id="summaryMaterials">
- <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
- <table class="table table-border table-bordered table-bg table-hover ">
- <thead>
- <tr class="text-c">
- <th>编号</th>
- <th>下载材料</th>
- </tr>
- </thead>
- <tbody class="add_file_line">
- <tr class="text-c" th:each="model,iterStat:${summaryMaterials}" th:object="${model}">
- <td th:text="${iterStat.index+1}"></td>
- <td class="td_material">
- <div th:if="*{fileDown}">
- <!-- <a th:href="{fileDown.download_uri} + *{fileDown.file_url}" target="_blank" style="color: #5b98dd;">[[*{fileDown.file_name}]]</a> -->
- <a th:href="${fileUrl} + *{fileDown.file_url}" target="_blank" style="color: #5b98dd;">[[*{fileDown.file_name}]]</a>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div class="line">其他材料</div>
- <div class="row cl" id="otherMaterials">
- <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
- <table class="table table-border table-bordered table-bg table-hover ">
- <thead>
- <tr class="text-c">
- <th>编号</th>
- <th>下载材料</th>
- </tr>
- </thead>
- <tbody class="add_file_line">
- <tr class="text-c" th:each="model,iterStat:${otherMaterials}" th:object="${model}">
- <td th:text="${iterStat.index+1}"></td>
- <td class="td_material">
- <div th:if="*{fileDown}">
- <a th:href="${fileUrl} + *{fileDown.file_url}" target="_blank" style="color: #5b98dd;">[[*{fileDown.file_name}]]</a>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <th:block th:if="${landApply.apply_type == '4'}">
- <div class="line">合同基本信息</div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2">关联载体:</label>
- <div class="col-xs-8 col-sm-8">
- <table class="table table-border table-bordered table-bg table-hover ">
- <thead>
- <tr class="text-c">
- <th>所属园区</th>
- <th>楼栋</th>
- <th>楼层</th>
- <td>面积</td>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="item : ${contract.floors}">
- <td th:text="${contract.park_name}"></td>
- <td th:text="${item.building_name}"></td>
- <td th:text="${item.floor}"></td>
- <td th:text="${item.area}"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2">租住生效日期:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${contract.contract_start}]]
- </div>
- <label class="form-label col-xs-4 col-sm-2">租住到期日期:</label>
- <div class="formControls col-xs-8 col-sm-4">
- [[${contract.contract_end}]]
- </div>
- </div>
- </th:block>
- <div class="line">流程信息</div>
- <div class="row cl">
- <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
- <table class="table table-border table-bordered table-bg table-hover processTb">
- <thead>
- <tr class="text-c">
- <th style="width:15%;">时间</th>
- <th style="width:15%;">审核状态</th>
- <th style="width:10%;">部门</th>
- <th style="width:10%;">操作人</th>
- <th style="width:10%;">操作</th>
- <th style="width:15%;">材料</th>
- <th style="width:25%;">审核意见</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${approvalList}" th:object="${model}">
- <td th:text="*{create_time}"></td>
- <td th:text="*{before_approvalstatus_str}"></td>
- <td th:text="*{department}"></td>
- <td th:text="*{create_name}"></td>
- <td th:text="*{oper_type}"></td>
- <td class="td_material">
- <div th:if="*{fileDowns}">
- <a th:each="filedown,iterStat:*{fileDowns}" th:object="${filedown}"
- th:href="${fileUrl} + *{file_url}" target="_blank" style="color: #5b98dd;">[[*{file_name}]]<br/></a>
- </div>
- </td>
- <td class="viewComment" th:data="*{approval_comment}" th:text="*{approval_comment}"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <!-- <div class="line">流程节点</div>
- <div class="row cl">
- <ul class="steps" id="phaseGraph">
- <li data-step="1" class="active">
- <span class="step">1</span>
- <span class="title">Validation states</span>
- </li>
- </ul>
- </div>-->
- <div th:if="${feedbackList}" class="line">进程反馈</div>
- <div th:if="${feedbackList}" class="row cl">
- <div class="col-xs-8 col-sm-9 col-xs-offset-2 col-sm-offset-1">
- <table class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr class="text-c">
- <th>日期</th>
- <th>线下办理状态</th>
- <th>文件</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${feedbackList}" th:object="${model}">
- <td th:text="*{create_time}"></td>
- <td th:text="*{process_status_str}"></td>
- <td class="td_material">
- <div th:if="*{fileDowns}">
- <a th:each="filedown,iterStat:*{fileDowns}" th:object="${filedown}"
- th:href="${fileUrl} + *{file_url}" target="_blank" style="color: #5b98dd;">[[*{file_name}]]<br/></a>
- </div>
- </td>
- <td class="td-manage">
- <a title="详情"
- th:onclick="'javascript:open_dialog(\'详情\',\'/stockLand/checkFeedback/'+*{id}+'\',\'800\',\'400\');'"
- class="ml-5" style="text-decoration:none">详情</a>
- <a title="编辑"
- th:onclick="'javascript:open_dialog(\'编辑\',\'/stockLand/editFeedback/'+*{id}+'\');'"
- class="ml-5" style="text-decoration:none">编辑</a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <div class="row cl">
- <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
- <button onClick="removeIframe();" class="btn btn-default radius" type="button"> 返回 </button>
- </div>
- </div>
- </form>
- </article>
- <script th:inline="javascript">
- $(function () {
- //initPhaseProgressGraph();
- //查看完整意见
- $(".viewComment").on("click", function () {
- layer.alert(
- $(this).attr('data'),
- {area: ['800px', '500px']}
- )
- });
- });
- function initPhaseProgressGraph() {
- var list = [[${processNodesList}]]
- var is_reject = false;
- var html = '';
- var index = 0;
- for (var i = 0; i < list.length; i++) {
- index += 1;
- 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>';
- }
- $("#phaseGraph").html(html);
- if ($(".steps li").length == 1) {
- $(".steps li").addClass("one");
- } else {
- $(".steps li").eq($(".steps li").length - 1).addClass("end");
- }
- }
- function open_dialog(title, url, w, h) {
- layer_show(title, pagePath + url, w, h);
- }
- /**
- * 取消
- */
- function removeIframe() {
- var index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
- </script>
- </body>
- </html>
|