live_list.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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" th:if="${isShow}">
  10. <i class="Hui-iconfont">&#xe67f;</i>
  11. 首页
  12. <span class="c-gray en">&gt;</span>入住信息
  13. <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px"
  14. href="javascript:location.replace(location.href);" title="刷新">
  15. <i class="Hui-iconfont">&#xe68f;</i>
  16. </a>
  17. </nav>
  18. <form id="myForm" th:action="${isShow} ? @{/build/floor/live/list}:@{'/build/floor/live/listByBuild/'+${build_id}}" th:method="get">
  19. <div class="page-container">
  20. <input type="hidden" name="build_id" th:value="${build_id}"/>
  21. <div class="text-c">
  22. <span class="select-box inline">
  23. <select class="select" id="areaType" name="areaType">
  24. <!-- <option value="">请选择搜索范围</option> -->
  25. <option th:selected="${areaType}==0" value="0">可用层面积</option>
  26. <option th:selected="${areaType}==1" value="1">可用楼面积</option>
  27. </select>
  28. </span>
  29. <span class="select-box inline">
  30. <select class="select" id="areaRelat" name="areaRelat">
  31. <option value="">请选择面积关系</option>
  32. <option th:selected="${areaRelat}=='gth'" value="gth">大于等于</option>
  33. <option th:selected="${areaRelat}=='lth'" value="lth">小于等于</option>
  34. </select>
  35. </span>
  36. <input type="text" class="input-text" placeholder="请输入需要的面积" id="remain_area" name="remain_area"
  37. th:value="${remain_area}" style="width:150px"/>
  38. <button type="submit" class="btn btn-primary">
  39. 搜索
  40. </button>
  41. </div>
  42. <div class="cl pd-5 bg-1 bk-gray mt-20">
  43. <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">54</strong> 条</span>
  44. </div>
  45. <table id="slidesTb" class="table table-border table-bordered table-bg table-hover">
  46. <thead>
  47. <tr class="text-c">
  48. <th>楼栋</th>
  49. <th>属性</th>
  50. <th>总面积(㎡)</th>
  51. <th>剩余面积(㎡)</th>
  52. <th>柱间距(m)</th>
  53. <th>卸货平台(个)</th>
  54. <th>货梯总承重(kg)</th>
  55. <th width="100">楼层详情</th>
  56. </tr>
  57. </thead>
  58. <tbody>
  59. <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
  60. <td th:text="*{build_number}"></td>
  61. <td><span th:if="*{plant_nature=='MECHANICAL'}">机械厂房</span><span th:unless="*{plant_nature=='MECHANICAL'}">电子厂房</span></td>
  62. <td th:text="*{area}"></td>
  63. <td th:text="*{remain_area}"></td>
  64. <td th:text="*{intercolumniation}"></td>
  65. <td th:text="*{landing_platform_count}"></td>
  66. <td th:text="*{lift_load_bearing}"></td>
  67. <td class="td-manage">
  68. <a title="楼层详情"
  69. th:onclick="'javascript:slides_edit(\'楼层详情\',\'/build/floor/findFloorList/'+*{id}+'\',\'800\',\'600\');'"
  70. class="ml-5" style="text-decoration:none">详情</a>
  71. </td>
  72. </tr>
  73. </tbody>
  74. </table>
  75. <div th:replace="admin/common/page :: page"></div>
  76. </div>
  77. </form>
  78. <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
  79. <script type="text/javascript" th:src="@{/js/build/floor/live_list.js}"></script>
  80. <script th:inline="javascript">
  81. </script>
  82. </body>
  83. </html>