index1.html 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. </head>
  8. <body layout:fragment="content">
  9. <nav class="breadcrumb">
  10. <i class="Hui-iconfont">&#xe67f;</i>
  11. 首页
  12. <span th:unless="${is_label}" class="c-gray en">&gt; 存量用地</span>
  13. <span th:unless="${is_label}" class="c-gray en">&gt; 已审核</span>
  14. <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px" href="javascript:location.replace(location.href);" title="刷新" >
  15. <i class="Hui-iconfont">&#xe68f;</i>
  16. </a>
  17. </nav>
  18. <form id="myForm" th:action="@{/areaManager/index1}" th:method="post" >
  19. <div class="page-container">
  20. <div class="text-c">
  21. <span class="select-box" style="width:250px">
  22. <select th:id="searchApplyUserType" class="select" th:name="applyUserType" onChange="$('#myForm').submit();">
  23. <option value="">--请选择申请类型--</option>
  24. <option value="3" th:selected ="${searchCondition.applyUserType}==3" >企业申请</option>
  25. <option value="4" th:selected ="${searchCondition.applyUserType}==4" >街道代理</option>
  26. </select>
  27. </span>
  28. <span class="select-box" style="width:250px">
  29. <select th:id="searchApplyStatus" class="select" th:name="approve_status" onChange="$('#myForm').submit();">
  30. <option value="">--全部--</option>
  31. <option value="" th:each="item : ${approveStatusList}" th:value="${item.value}"
  32. th:text="${item.name}" th:selected = "${searchCondition.approve_status}==${item.value}">
  33. </option>
  34. </select>
  35. </span>
  36. <span class="select-box" style="width:250px">
  37. <select th:id="searchApplyType" class="select" th:name="apply_type" onChange="$('#myForm').submit();">
  38. <option value="">--全部--</option>
  39. <option value="" th:each="item : ${applyTypeList}" th:value="${item.value}"
  40. th:text="${item.name}" th:selected = "${searchCondition.apply_type}==${item.value}">
  41. </option>
  42. </select>
  43. </span>
  44. <input type="text" class="input-text" style="width:250px" placeholder="请输入编号进行查询" id="keyword" name="keyword" th:value="${keyword}"/>
  45. <input type="button" value="搜索" class="btn btn-primary" onclick="$('#myForm').submit();">
  46. </div>
  47. <div class="cl pd-5 bg-1 bk-gray mt-20">
  48. <span class="r">共有数据:<strong th:text="${pageInfo.total}" id="total">54</strong> 条</span>
  49. </div>
  50. <!-- 表格 -->
  51. <table id="index" class="table table-border table-bordered table-bg table-hover" style="table-layout: fixed;width:100%;">
  52. <thead>
  53. <tr class="text-c">
  54. <!--<th style="width:0px;"></th>-->
  55. <th style="width:10%;">编号</th>
  56. <th style="width:15%;">申请类型</th>
  57. <th style="width:15%;">申请企业</th>
  58. <!--<th style="width:150px;">处理日期</th>-->
  59. <th style="width:15%;">处理时间(工作日)</th>
  60. <th style="width:15%;">申请日期</th>
  61. <th style="width:15%;">审核状态</th>
  62. <th style="width:10%;">操作</th>
  63. </tr>
  64. </thead>
  65. <tbody>
  66. <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
  67. <!--<td><input type="checkbox" value="2" name=""/></td>-->
  68. <!--<td><input type="hidden" th:id="*{id}" value="" name=""/></td>-->
  69. <td th:text="*{apply_no}" class="text-overflow" th:title="*{apply_no}"></td>
  70. <td th:text="*{apply_type_name}"></td>
  71. <td th:text="*{company_name}"></td>
  72. <!--<td th:text="*{deal_time}"></td>-->
  73. <td th:text="*{overTimeStr}"></td>
  74. <td th:text="*{apply_time}"></td>
  75. <td th:text="*{approve_status_name}"></td>
  76. <td class="td-manage">
  77. <a title="详情" href="javascript:;" th:onclick="'javascript:area_details(\'详情\',\'/areaManager/details?id='+*{id}+'\',\'800\',\'500\');'"
  78. class="ml-5" style="text-decoration:none">详情</a>
  79. <a title="撤回" th:if="*{canWithdraw==1}" href="javascript:;" th:onclick="'javascript:withdraw(\''+*{id}+'\');'"
  80. class="ml-5" style="text-decoration:none">撤回</a>
  81. </td>
  82. </tr>
  83. </tbody>
  84. </table>
  85. <div th:replace="admin/common/page :: page"></div>
  86. </div>
  87. </form>
  88. <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
  89. <script type="text/javascript" th:src="@{/js/government/areaManager/areaManager_list.js}"></script>
  90. <script th:inline="javascript">
  91. </script>
  92. </body>
  93. </html>