parent
c09d51e754
commit
a368c6f888
@ -0,0 +1,75 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh-CN" xmlns:th="http://www.thymeleaf.org">
|
||||||
|
<head th:replace="userCommon::common-header"></head>
|
||||||
|
<body class="sb-nav-fixed">
|
||||||
|
<nav th:replace="userCommon::common-navbar"></nav>
|
||||||
|
<div id="layoutSidenav">
|
||||||
|
<div th:replace="userCommon::common-sidenav"></div>
|
||||||
|
|
||||||
|
<div id="layoutSidenav_content">
|
||||||
|
<main>
|
||||||
|
<div class="container-fluid px-4">
|
||||||
|
<h1 class="mt-4">预约信息</h1>
|
||||||
|
|
||||||
|
<ol class="breadcrumb mb-4">
|
||||||
|
<li class="breadcrumb-item"><a th:href="@{/toUserMain}">主页</a></li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<div class="card mb-4">
|
||||||
|
<div class="card-header">
|
||||||
|
<i class="fas fa-table me-1"></i>
|
||||||
|
预约信息表
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<table id="datatablesSimple">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>编号</th>
|
||||||
|
<th>预约号</th>
|
||||||
|
<th>名称</th>
|
||||||
|
<th>时间</th>
|
||||||
|
<th>地点</th>
|
||||||
|
<th>操作</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
|
<tbody>
|
||||||
|
<tr th:each="class:${classList}">
|
||||||
|
<td th:text="${class.cid}">编号</td>
|
||||||
|
<td th:text="${class.classId}">预约号</td>
|
||||||
|
<td th:text="${class.className}">名称</td>
|
||||||
|
<td th:text="${class.classBegin}">时间</td>
|
||||||
|
<td th:text="${class.coach}">地点</td>
|
||||||
|
<td>
|
||||||
|
<a th:href="@{/user/userBook(recordId=${class.classId},recordName=${class.className},recordBegin=${class.classBegin},Location=${class.coach})}"
|
||||||
|
style="text-decoration: none">
|
||||||
|
<input type="button" class="btn btn-sm btn-outline-primary" value="预约">
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style="text-align:center;margin-top:20px;margin-bottom:20px">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer th:replace="userCommon::common-footer"></footer>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div th:include="userCommon::common-scripts"></div>
|
||||||
|
<script>
|
||||||
|
function del() {
|
||||||
|
let msg = "确定要删除吗?";
|
||||||
|
if (confirm(msg) == true) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue