+
+
安全事件
+ } onClick={() => qc.invalidateQueries({ queryKey: ['security-events'] })}>刷新
+
+
+
+ )
+}
diff --git a/src/pages/Throttle.tsx b/src/pages/Throttle.tsx
new file mode 100644
index 0000000..b0fd897
--- /dev/null
+++ b/src/pages/Throttle.tsx
@@ -0,0 +1,34 @@
+import { useQuery, useQueryClient } from '@tanstack/react-query'
+import { Card, Row, Col, Statistic, Table, Button, Typography, Tag } from 'antd'
+import { ReloadOutlined, ThunderboltOutlined } from '@ant-design/icons'
+import { api } from '@/services/http-client'
+
+const { Title } = Typography
+
+export default function ThrottlePage() {
+ const qc = useQueryClient()
+ const { data } = useQuery({ queryKey: ['throttle'], queryFn: (): Promise