| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <!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">
- <i class="Hui-iconfont"></i>
- 首页
- <span th:if="${is_label}" class="c-gray en">> 企业报表</span>
- <span th:unless="${is_label}" 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:unless="${listType}==buildPlant" th:action="@{/build/buildInfo/list}" th:method="get">
- <div class="page-container">
- <!-- <div class="text-c">
- <input type="text" class="input-text" style="width:250px" placeholder="输入发布标题、发布人" name="keyword" th:value="${keyword}"/>
- <button type="submit" class="btn btn-primary">
- 搜索
- </button>
- </div> -->
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="l">
- </span>
- <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">54</strong> 条</span>
- </div>
- <table id="buildInfoTb" 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 class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <td th:text="*{name}">
- <!-- th:onclick="'javascript:showBuildCompanyReport(\'企业报表\',\'/government/companyReport/list/'+*{id}+'\');'" -->
- </td>
- <td th:text="*{location}"></td>
- <td th:text="*{area}"></td>
- <td th:text="*{rest_area}"></td>
- <td th:text="*{contact}"></td>
- <td th:text="*{phone}"></td>
- <td><a th:unless="${listType}==buildPlant"
- th:onclick="'javascript:showBuildCompanyReport(\'明细\',\'/government/companyReport/list/'+*{id}+'\',\'1100\',\'600\');'"
- class="ml-5" style="text-decoration:none">明细</a></td>
- </tr>
- </tbody>
- </table>
- <div th:replace="admin/common/page :: page"></div>
- </div>
- </form>
- <form id="myForm" th:if="${listType}==buildPlant" th:action="@{/government/buildPlant/buildList}" th:method="get">
- <div class="page-container">
- <!-- <div class="text-c">
- <input type="text" class="input-text" style="width:250px" placeholder="输入发布标题、发布人" name="keyword" th:value="${keyword}"/>
- <button type="submit" class="btn btn-primary">
- 搜索
- </button>
- </div> -->
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="l">
- </span>
- <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">54</strong> 条</span>
- </div>
- <table id="buildInfoTb" 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>
- <!-- <th>操作</th> -->
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <!--<td><!– <input type="checkbox" th:id="*{id}" value="" name=""/> –><span th:text="${iterStat.index+1}" ></span></td>-->
- <td th:text="*{name}">
- </td>
- <td th:text="*{location}"></td>
- <td th:text="*{area}"></td>
- <td th:text="*{rest_area}"></td>
- <td th:text="*{contact}"></td>
- <td th:text="*{phone}"></td>
- <!-- <td><a title="入住信息"
- th:onclick="'javascript:showBuildCompanyReport(\'入住信息\',\'//build/floor/live/listByBuild/'+*{id}+'\',\'1000\',\'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/government/companyReport/buildInfo_list.js}"></script>
- <script th:inline="javascript">
- </script>
- </body>
- </html>
|