live_detail.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <article class="page-container">
  10. <form class="form form-horizontal" id="form-slides-add">
  11. <div class="row cl">
  12. <div>
  13. <table class="table table-border table-bordered table-bg table-hover">
  14. <thead>
  15. <tr class="text-c">
  16. <th>客户名称</th>
  17. <th>楼栋</th>
  18. <th>层数</th>
  19. <th>面积(平方米)</th>
  20. <th>合同单价(元/月/平方米)</th>
  21. <th>合同生效日期</th>
  22. <th>合同截止日期</th>
  23. </tr>
  24. </thead>
  25. <tbody >
  26. <tr th:unless="${#lists.isEmpty(floorContractRelates)}" class="text-c " th:each="floorContractRelate,iterStat : ${floorContractRelates}" th:object="${floorContractRelate}">
  27. <td th:text="*{company_name}"></td>
  28. <td th:text="*{build_number}"></td>
  29. <td th:text="*{floor}"></td>
  30. <td th:text="*{use_area}"></td>
  31. <td th:text="*{pay}"></td>
  32. <td th:text="*{contract_start_date}"></td>
  33. <td th:text="*{contract_terminate_date}"></td>
  34. </tr>
  35. <tr th:if="${#lists.isEmpty(floorContractRelates)}">
  36. <td style=" text-align: center;" colspan="7">暂无客户入住</td>
  37. </tr>
  38. </tbody>
  39. </table>
  40. </div>
  41. </div>
  42. <div class="row cl">
  43. <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
  44. <!--<button onClick="removeIframe();" class="btn btn-default radius" type="button">&nbsp;&nbsp;返回&nbsp;&nbsp;</button>-->
  45. </div>
  46. </div>
  47. </form>
  48. </article>
  49. <script th:inline="javascript">
  50. /**
  51. * 取消
  52. */
  53. function removeIframe() {
  54. var index = parent.layer.getFrameIndex(window.name);
  55. parent.layer.close(index);
  56. }
  57. </script>
  58. </body>
  59. </html>