| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <!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 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:action="@{/build/floor/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">
- <a href="javascript:;" th:onclick="'javascript:slides_add(\'新增\',\'/build/floor/add\',\'950\',\'500\');'" class="btn btn-primary radius"><i class="Hui-iconfont"></i> 新增</a>
- </span>
- <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">54</strong> 条</span>
- </div>
- <table id="slidesTb" class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr class="text-c">
- <th>编号</th>
- <th>楼栋</th>
- <th>总层数</th>
- <th>总面积(m²)</th>
- <th>柱间距(m)</th>
- <th>卸货平台(个)</th>
- <th>货梯总承重(kg)</th>
- <th width="100">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <td><input type="hidden" th:id="*{id}" value="" name=""/><span th:text="${iterStat.index+1}" ></span></td>
- <td th:text="*{build_number}"></td>
- <td th:text="*{floor_count}"></td>
- <td th:text="*{area}"></td>
- <td th:text="*{intercolumniation}"></td>
- <td th:text="*{landing_platform_count}"></td>
- <td th:text="*{lift_load_bearing}"></td>
- <td class="td-manage">
- <a title="编辑" href="javascript:;" th:onclick="'javascript:slides_edit(\'编辑\',\'/build/floor/edit/'+*{id}+'\',\'950\',\'500\');'" class="ml-5" style="text-decoration:none">编辑</a>
- <a title="详情" href="javascript:;" th:onclick="'javascript:slides_edit(\'详情\',\'/build/floor/info/'+*{id}+'\',\'950\',\'500\');'" class="ml-5" style="text-decoration:none">详情</a>
- <a title="删除" href="javascript:;" th:onclick="'javascript:slides_del(this);'" 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/build/floor/floor_list.js}"></script>
- <script th:inline="javascript">
- </script>
- </body>
- </html>
|