| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <!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" th:if="${isShow}">
- <i class="Hui-iconfont"></i>
- 首页
- <span 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="${isShow} ? @{/build/floor/live/list}:@{'/build/floor/live/listByBuild/'+${build_id}}" th:method="get">
- <div class="page-container">
- <input type="hidden" name="build_id" th:value="${build_id}"/>
- <div class="text-c">
- <span class="select-box inline">
- <select class="select" id="areaType" name="areaType">
- <!-- <option value="">请选择搜索范围</option> -->
- <option th:selected="${areaType}==0" value="0">可用层面积</option>
- <option th:selected="${areaType}==1" value="1">可用楼面积</option>
- </select>
- </span>
- <span class="select-box inline">
- <select class="select" id="areaRelat" name="areaRelat">
- <option value="">请选择面积关系</option>
- <option th:selected="${areaRelat}=='gth'" value="gth">大于等于</option>
- <option th:selected="${areaRelat}=='lth'" value="lth">小于等于</option>
- </select>
- </span>
- <input type="text" class="input-text" placeholder="请输入需要的面积" id="remain_area" name="remain_area"
- th:value="${remain_area}" style="width:150px"/>
- <button type="submit" class="btn btn-primary">
- 搜索
- </button>
- </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="slidesTb" class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr class="text-c">
- <th>楼栋</th>
- <th>属性</th>
- <th>总面积(㎡)</th>
- <th>剩余面积(㎡)</th>
- <th>柱间距(m)</th>
- <th>卸货平台(个)</th>
- <th>货梯总承重(kg)</th>
- <th width="100">楼层详情</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <td th:text="*{build_number}"></td>
- <td><span th:if="*{plant_nature=='MECHANICAL'}">机械厂房</span><span th:unless="*{plant_nature=='MECHANICAL'}">电子厂房</span></td>
- <td th:text="*{area}"></td>
- <td th:text="*{remain_area}"></td>
- <td th:text="*{intercolumniation}"></td>
- <td th:text="*{landing_platform_count}"></td>
- <td th:text="*{lift_load_bearing}"></td>
- <td class="td-manage">
- <a title="楼层详情"
- th:onclick="'javascript:slides_edit(\'楼层详情\',\'/build/floor/findFloorList/'+*{id}+'\',\'800\',\'600\');'"
- 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/build/floor/live_list.js}"></script>
- <script th:inline="javascript">
- </script>
- </body>
- </html>
|