| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!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">
- <article class="page-container">
- <form class="form form-horizontal" id="form-slides-add">
- <div class="row cl">
- <div>
- <table class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr class="text-c">
- <th>客户名称</th>
- <th>楼栋</th>
- <th>层数</th>
- <th>面积(平方米)</th>
- <th>合同单价(元/月/平方米)</th>
- <th>合同生效日期</th>
- <th>合同截止日期</th>
- </tr>
- </thead>
- <tbody >
- <tr th:unless="${#lists.isEmpty(floorContractRelates)}" class="text-c " th:each="floorContractRelate,iterStat : ${floorContractRelates}" th:object="${floorContractRelate}">
- <td th:text="*{company_name}"></td>
- <td th:text="*{build_number}"></td>
- <td th:text="*{floor}"></td>
- <td th:text="*{use_area}"></td>
- <td th:text="*{pay}"></td>
- <td th:text="*{contract_start_date}"></td>
- <td th:text="*{contract_terminate_date}"></td>
- </tr>
- <tr th:if="${#lists.isEmpty(floorContractRelates)}">
- <td style=" text-align: center;" colspan="7">暂无客户入住</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 removeIframe() {
- var index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
-
- </script>
- </body>
- </html>
|