Update admin.html
Browse files- admin.html +0 -2
admin.html
CHANGED
|
@@ -258,9 +258,7 @@
|
|
| 258 |
// 显示统计数据
|
| 259 |
const statsHtml = Object.entries(config.stats).map(([fingerprint, stat]) => `
|
| 260 |
<div class="stat-item ${stat.blocked ? 'blocked' : ''}">
|
| 261 |
-
<p><strong>指纹:</strong> ${fingerprint}</p>
|
| 262 |
<p><strong>IP:</strong> ${stat.ip}</p>
|
| 263 |
-
<p><strong>设备:</strong> ${stat.user_agent}</p>
|
| 264 |
<p><strong>请求次数:</strong> ${stat.chat_count}</p>
|
| 265 |
<p><strong>最后访问:</strong> ${new Date(stat.last_access).toLocaleString()}</p>
|
| 266 |
<p><strong>状态:</strong> ${stat.blocked ? '已拉黑' : '正常'}</p>
|
|
|
|
| 258 |
// 显示统计数据
|
| 259 |
const statsHtml = Object.entries(config.stats).map(([fingerprint, stat]) => `
|
| 260 |
<div class="stat-item ${stat.blocked ? 'blocked' : ''}">
|
|
|
|
| 261 |
<p><strong>IP:</strong> ${stat.ip}</p>
|
|
|
|
| 262 |
<p><strong>请求次数:</strong> ${stat.chat_count}</p>
|
| 263 |
<p><strong>最后访问:</strong> ${new Date(stat.last_access).toLocaleString()}</p>
|
| 264 |
<p><strong>状态:</strong> ${stat.blocked ? '已拉黑' : '正常'}</p>
|