Files
shengkao_pachong/view/user/index.html
杨志 e964409bb7 up
2026-01-21 08:39:32 +08:00

339 lines
10 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>账号管理 - 职位信息爬虫工具</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: #f5f5f5;
padding: 20px;
}
.container {
max-width: 1000px;
margin: 0 auto;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
padding: 30px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 2px solid #4CAF50;
}
h1 {
color: #333;
font-size: 24px;
}
.nav-links {
display: flex;
gap: 15px;
}
.nav-links a {
color: #2196F3;
text-decoration: none;
padding: 8px 15px;
border-radius: 4px;
transition: background 0.3s;
}
.nav-links a:hover {
background: #e3f2fd;
}
.form-section {
margin-bottom: 30px;
padding: 20px;
background: #f9f9f9;
border-radius: 6px;
border: 1px solid #e0e0e0;
}
.form-section h2 {
font-size: 18px;
color: #555;
margin-bottom: 15px;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
color: #333;
font-weight: 500;
}
.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
.btn {
padding: 10px 20px;
background: #4CAF50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: background 0.3s;
}
.btn:hover {
background: #45a049;
}
.btn-danger {
background: #f44336;
}
.btn-danger:hover {
background: #da190b;
}
.message {
padding: 12px;
border-radius: 4px;
margin-bottom: 15px;
}
.message.success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.message.error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
table {
width: 100%;
border-collapse: collapse;
background: #fff;
}
table th,
table td {
padding: 12px;
text-align: left;
border: 1px solid #ddd;
}
table th {
background: #4CAF50;
color: #fff;
font-weight: 600;
}
table tr:nth-child(even) {
background: #f9f9f9;
}
table tr:hover {
background: #f0f0f0;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>账号管理</h1>
<div class="nav-links">
<a href="/crawler">爬虫工具</a>
<a href="/auth/logout">退出登录</a>
</div>
</div>
<!-- 添加账号 -->
<div class="form-section">
<h2>添加账号</h2>
<div id="add-message"></div>
<div class="form-group">
<label for="new-username">用户名:</label>
<input type="text" id="new-username" placeholder="请输入用户名">
</div>
<div class="form-group">
<label for="new-password">密码:</label>
<input type="password" id="new-password" placeholder="请输入密码">
</div>
<button class="btn" onclick="addUser()">添加账号</button>
</div>
<!-- 账号列表 -->
<div class="form-section">
<h2>账号列表</h2>
<div id="list-message"></div>
<table id="users-table">
<thead>
<tr>
<th>用户名</th>
<th>创建时间</th>
<th>操作</th>
</tr>
</thead>
<tbody id="users-tbody">
<tr>
<td colspan="3" style="text-align: center;">加载中...</td>
</tr>
</tbody>
</table>
</div>
</div>
<script>
const API_BASE_URL = '';
// 页面加载时获取账号列表
window.onload = function() {
loadUsers();
};
// 加载账号列表
function loadUsers() {
fetch(API_BASE_URL + '/user/getUsers', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
}
})
.then(response => response.json())
.then(data => {
if (data.code === 1) {
displayUsers(data.data);
} else {
showMessage('list-message', data.msg || '获取失败', 'error');
}
})
.catch(error => {
showMessage('list-message', '请求失败: ' + error.message, 'error');
});
}
// 显示账号列表
function displayUsers(users) {
const tbody = document.getElementById('users-tbody');
tbody.innerHTML = '';
// 添加管理员账号(只显示,不能删除)
const adminRow = document.createElement('tr');
adminRow.innerHTML = `
<td>admin</td>
<td>-</td>
<td><span style="color: #999;">系统管理员</span></td>
`;
tbody.appendChild(adminRow);
// 添加普通用户
if (users.length === 0) {
const row = document.createElement('tr');
row.innerHTML = '<td colspan="3" style="text-align: center;">暂无账号</td>';
tbody.appendChild(row);
} else {
users.forEach(user => {
const row = document.createElement('tr');
row.innerHTML = `
<td>${user.username || ''}</td>
<td>${user.created_at || '-'}</td>
<td>
<button class="btn btn-danger" onclick="deleteUser('${user.username}')">删除</button>
</td>
`;
tbody.appendChild(row);
});
}
}
// 添加账号
function addUser() {
const username = document.getElementById('new-username').value.trim();
const password = document.getElementById('new-password').value.trim();
if (!username || !password) {
showMessage('add-message', '请输入用户名和密码', 'error');
return;
}
fetch(API_BASE_URL + '/user/add', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `username=${encodeURIComponent(username)}&password=${encodeURIComponent(password)}`
})
.then(response => response.json())
.then(data => {
if (data.code === 1) {
showMessage('add-message', data.msg || '添加成功', 'success');
document.getElementById('new-username').value = '';
document.getElementById('new-password').value = '';
loadUsers();
} else {
showMessage('add-message', data.msg || '添加失败', 'error');
}
})
.catch(error => {
showMessage('add-message', '请求失败: ' + error.message, 'error');
});
}
// 删除账号
function deleteUser(username) {
if (!confirm('确定要删除账号 "' + username + '" 吗?')) {
return;
}
fetch(API_BASE_URL + '/user/delete', {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
body: `username=${encodeURIComponent(username)}`
})
.then(response => response.json())
.then(data => {
if (data.code === 1) {
showMessage('list-message', data.msg || '删除成功', 'success');
loadUsers();
} else {
showMessage('list-message', data.msg || '删除失败', 'error');
}
})
.catch(error => {
showMessage('list-message', '请求失败: ' + error.message, 'error');
});
}
// 显示消息
function showMessage(containerId, message, type) {
const container = document.getElementById(containerId);
container.innerHTML = `<div class="message ${type}">${message}</div>`;
}
</script>
</body>
</html>