完成管理面板首页

This commit is contained in:
2023-12-17 13:59:39 +00:00
parent d5da269cdc
commit ff6a9a38a1
5 changed files with 37 additions and 27 deletions

View File

@ -203,6 +203,18 @@ app.get('/show', (req, res) => {
res.sendFile(join(__dirname, 'show.html'));
});
app.get('/user-management', (req, res) => {
res.sendFile(join(__dirname, 'user-management.html'));
});
app.get('/book-management', (req, res) => {
res.sendFile(join(__dirname, 'book-management.html'));
});
app.get('/log-query', (req, res) => {
res.sendFile(join(__dirname, 'log-query.html'));
});
server.listen(3000, () => {
console.log('server running at http://localhost:3000');
});