1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-15 21:01:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

页面调整,添加状态检测

This commit is contained in:
2022-03-14 09:03:15 +08:00
parent da4aaa0c91
commit 0ebbf5fc3a
20 changed files with 447 additions and 111 deletions

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%- include("./component/header.html"); %>
</head>
<body>
<%- include("./component/navbar.html"); %>
<main class="main">
<h1><%= title %></h1>
<div id="container">
</div>
</main>
<%- include("./component/footer.html"); %>
<script>
getRequest("/book/get", { id: 1 })
.then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.log(error);
});
</script>
</body>
</html>