| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <!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>
- .dateform {
- float: left;
- width: 120px;
- }
- .datelabel {
- float: left;
- width: 120px;
- }
- </style>
- </head>
- <body layout:fragment="content">
- <form id="myForm" th:action="@{/projectFilling/fillingDetail}" th:method="post">
- <input hidden name="id" th:value="${id}">
- <div class="page-container">
- <div class="row clearfix" style="padding: 0 15px;">
- <span class="select-box" style="width:170px;">
- <select class="select" th:name="approval_status" id="approval_status" onchange="sub()">
- <option value="">-- 请选择单据状态 --</option>
- <option th:each="item : ${statusList}" th:value="${item.value}"
- th:text="${item.name}" th:selected="${approval_status}==${item.value}">
- </option>
- </select>
- </span>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-1">项目大类:</label>
- <div class="formControls col-xs-8 col-sm-9">
- <p th:text="${project.project_type_name}"></p>
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-1">服务事项:</label>
- <div class="formControls col-xs-8 col-sm-9">
- <p th:text="${project.project_service_type_name}"></p>
- </div>
- </div>
- <div class="row cl" th:if="${project.project_type=='2'}">
- <label class="form-label col-xs-4 col-sm-1">填报情况:</label>
- <div class="formControls col-xs-8 col-sm-9">
- <p th:text="${project.count+'/'+project.total}"></p>
- </div>
- </div>
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="l">
- <a class="btn btn-primary radius" onclick="exportExcel()">导出</a>
- </span>
- <span class="r">共有数据:<strong th:text="${pageInfo.total}" id="total">0</strong> 条</span>
- </div>
- <!-- 表格 -->
- <table id="index" class="table table-border table-bordered table-bg table-hover"
- style="table-layout: fixed;width:100%;">
- <thead>
- <tr class="text-c">
- <th style="width:100px;">编号</th>
- <th style="width:100px;">企业名称</th>
- <!--<th style="width:100px;">推送时间</th>-->
- <th style="width:100px;">填报时间</th>
- <th style="width:100px;">状态</th>
- <th style="width:100px;">电子档</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <td th:text="*{apply_no}" class="text-overflow"></td>
- <td th:text="*{company_name}" class="text-overflow"></td>
- <!--<td th:text="*{receive_date}"></td>-->
- <td th:text="*{apply_date}"></td>
- <td th:text="*{approve_status_name}"></td>
- <td th:if="*{fileDown.file_url != null}">
- <a th:href="${fileUrl} + *{fileDown.file_url}" target="_blank">[[*{fileDown.file_name}]]</a>
- </td>
- <td th:if="*{fileDown.file_url == null}">
- /
- </td>
- </tr>
- </tbody>
- </table>
- <div th:replace="admin/common/page :: page"></div>
- </div>
- </form>
- <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
- <script th:inline="javascript">
- function exportExcel() {
- var id = [[${id}]];
- var approval_status = [[${approval_status}]];
- window.open(pagePath + "/projectFilling/exportExcel?id=" + id + "&approval_status=" + approval_status);
- }
- function sub() {
- $("#myForm").submit();
- }
- </script>
- </body>
- </html>
|