buildInfo_list.html 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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:if="${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:unless="${listType}==buildPlant" th:action="@{/build/buildInfo/list}" th:method="get">
  19. <div class="page-container">
  20. <!-- <div class="text-c">
  21. <input type="text" class="input-text" style="width:250px" placeholder="输入发布标题、发布人" name="keyword" th:value="${keyword}"/>
  22. <button type="submit" class="btn btn-primary">
  23. 搜索
  24. </button>
  25. </div> -->
  26. <div class="cl pd-5 bg-1 bk-gray mt-20">
  27. <span class="l">
  28. </span>
  29. <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">54</strong> 条</span>
  30. </div>
  31. <table id="buildInfoTb" class="table table-border table-bordered table-bg table-hover">
  32. <thead>
  33. <tr class="text-c">
  34. <th>园区名称</th>
  35. <th>园区位置</th>
  36. <th>园区总面积(平方米)</th>
  37. <th>剩余面积(平方米)</th>
  38. <th>园区联系人</th>
  39. <th>联系方式</th>
  40. <th>操作</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
  45. <td th:text="*{name}">
  46. <!-- th:onclick="'javascript:showBuildCompanyReport(\'企业报表\',\'/government/companyReport/list/'+*{id}+'\');'" -->
  47. </td>
  48. <td th:text="*{location}"></td>
  49. <td th:text="*{area}"></td>
  50. <td th:text="*{rest_area}"></td>
  51. <td th:text="*{contact}"></td>
  52. <td th:text="*{phone}"></td>
  53. <td><a th:unless="${listType}==buildPlant"
  54. th:onclick="'javascript:showBuildCompanyReport(\'明细\',\'/government/companyReport/list/'+*{id}+'\',\'1100\',\'600\');'"
  55. class="ml-5" style="text-decoration:none">明细</a></td>
  56. </tr>
  57. </tbody>
  58. </table>
  59. <div th:replace="admin/common/page :: page"></div>
  60. </div>
  61. </form>
  62. <form id="myForm" th:if="${listType}==buildPlant" th:action="@{/government/buildPlant/buildList}" th:method="get">
  63. <div class="page-container">
  64. <!-- <div class="text-c">
  65. <input type="text" class="input-text" style="width:250px" placeholder="输入发布标题、发布人" name="keyword" th:value="${keyword}"/>
  66. <button type="submit" class="btn btn-primary">
  67. 搜索
  68. </button>
  69. </div> -->
  70. <div class="cl pd-5 bg-1 bk-gray mt-20">
  71. <span class="l">
  72. </span>
  73. <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">54</strong> 条</span>
  74. </div>
  75. <table id="buildInfoTb" class="table table-border table-bordered table-bg table-hover">
  76. <thead>
  77. <tr class="text-c">
  78. <!--<th>序号</th>-->
  79. <th>园区名称</th>
  80. <th>园区位置</th>
  81. <th>园区总面积(平方米)</th>
  82. <th>剩余面积(平方米)</th>
  83. <th>园区联系人</th>
  84. <th>联系方式</th>
  85. <!-- <th>操作</th> -->
  86. </tr>
  87. </thead>
  88. <tbody>
  89. <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
  90. <!--<td>&lt;!&ndash; <input type="checkbox" th:id="*{id}" value="" name=""/> &ndash;&gt;<span th:text="${iterStat.index+1}" ></span></td>-->
  91. <td th:text="*{name}">
  92. </td>
  93. <td th:text="*{location}"></td>
  94. <td th:text="*{area}"></td>
  95. <td th:text="*{rest_area}"></td>
  96. <td th:text="*{contact}"></td>
  97. <td th:text="*{phone}"></td>
  98. <!-- <td><a title="入住信息"
  99. th:onclick="'javascript:showBuildCompanyReport(\'入住信息\',\'//build/floor/live/listByBuild/'+*{id}+'\',\'1000\',\'600\');'"
  100. class="ml-5" style="text-decoration:none">入住信息</a></td> -->
  101. </tr>
  102. </tbody>
  103. </table>
  104. <div th:replace="admin/common/page :: page"></div>
  105. </div>
  106. </form>
  107. <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
  108. <script type="text/javascript" th:src="@{/js/government/companyReport/buildInfo_list.js}"></script>
  109. <script th:inline="javascript">
  110. </script>
  111. </body>
  112. </html>