| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!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>
- </head>
- <body layout:fragment="content">
- <nav class="breadcrumb">
- <i class="Hui-iconfont"></i>
- 首页
- <span th:unless="${is_label}" class="c-gray en">> 存量用地</span>
- <span th:unless="${is_label}" class="c-gray en">> 已审核</span>
- <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px" href="javascript:location.replace(location.href);" title="刷新" >
- <i class="Hui-iconfont"></i>
- </a>
- </nav>
- <form id="myForm" th:action="@{/areaManager/index1}" th:method="post" >
- <div class="page-container">
- <div class="text-c">
- <span class="select-box" style="width:250px">
- <select th:id="searchApplyUserType" class="select" th:name="applyUserType" onChange="$('#myForm').submit();">
- <option value="">--请选择申请类型--</option>
- <option value="3" th:selected ="${searchCondition.applyUserType}==3" >企业申请</option>
- <option value="4" th:selected ="${searchCondition.applyUserType}==4" >街道代理</option>
- </select>
- </span>
- <span class="select-box" style="width:250px">
- <select th:id="searchApplyStatus" class="select" th:name="approve_status" onChange="$('#myForm').submit();">
- <option value="">--全部--</option>
- <option value="" th:each="item : ${approveStatusList}" th:value="${item.value}"
- th:text="${item.name}" th:selected = "${searchCondition.approve_status}==${item.value}">
- </option>
- </select>
- </span>
- <span class="select-box" style="width:250px">
- <select th:id="searchApplyType" class="select" th:name="apply_type" onChange="$('#myForm').submit();">
- <option value="">--全部--</option>
- <option value="" th:each="item : ${applyTypeList}" th:value="${item.value}"
- th:text="${item.name}" th:selected = "${searchCondition.apply_type}==${item.value}">
- </option>
- </select>
- </span>
- <input type="text" class="input-text" style="width:250px" placeholder="请输入编号进行查询" id="keyword" name="keyword" th:value="${keyword}"/>
- <input type="button" value="搜索" class="btn btn-primary" onclick="$('#myForm').submit();">
- </div>
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="r">共有数据:<strong th:text="${pageInfo.total}" id="total">54</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:0px;"></th>-->
- <th style="width:10%;">编号</th>
- <th style="width:15%;">申请类型</th>
- <th style="width:15%;">申请企业</th>
- <!--<th style="width:150px;">处理日期</th>-->
- <th style="width:15%;">处理时间(工作日)</th>
- <th style="width:15%;">申请日期</th>
- <th style="width:15%;">审核状态</th>
- <th style="width:10%;">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <!--<td><input type="checkbox" value="2" name=""/></td>-->
- <!--<td><input type="hidden" th:id="*{id}" value="" name=""/></td>-->
- <td th:text="*{apply_no}" class="text-overflow" th:title="*{apply_no}"></td>
- <td th:text="*{apply_type_name}"></td>
- <td th:text="*{company_name}"></td>
- <!--<td th:text="*{deal_time}"></td>-->
- <td th:text="*{overTimeStr}"></td>
- <td th:text="*{apply_time}"></td>
- <td th:text="*{approve_status_name}"></td>
- <td class="td-manage">
- <a title="详情" href="javascript:;" th:onclick="'javascript:area_details(\'详情\',\'/areaManager/details?id='+*{id}+'\',\'800\',\'500\');'"
- class="ml-5" style="text-decoration:none">详情</a>
- <a title="撤回" th:if="*{canWithdraw==1}" href="javascript:;" th:onclick="'javascript:withdraw(\''+*{id}+'\');'"
- class="ml-5" style="text-decoration:none">撤回</a>
- </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 type="text/javascript" th:src="@{/js/government/areaManager/areaManager_list.js}"></script>
- <script th:inline="javascript">
- </script>
- </body>
- </html>
|