调整列表字段和枚举值转换

This commit is contained in:
Eamon
2026-01-05 09:14:41 +08:00
parent a27e856f07
commit 054b8954c4
23 changed files with 571 additions and 222 deletions

View File

@@ -12,9 +12,7 @@ export default function DashboardPage(props: DashboardPageProps) {
<h1 className="text-xl font-bold text-gray-800">
IP代理管理控制台
</h1>
<p className="text-gray-500 mt-1">
: {new Date().toLocaleString("zh-CN")}
</p>
<p className="text-gray-500 mt-1">: -</p>
</div>
<div className="flex space-x-3">
<button className="px-4 py-2 bg-gray-100 text-gray-700 border border-gray-200 rounded-md hover:bg-gray-200 transition-colors text-sm font-medium">
@@ -189,8 +187,8 @@ export default function DashboardPage(props: DashboardPageProps) {
? "warning"
: "active"
}
requests={Math.floor(Math.random() * 10000)}
successRate={`${95 + Math.floor(Math.random() * 5)}%`}
requests={1}
successRate={`2%`}
/>
))}
</tbody>