From 7a1dfb9df9e8beb946a2697302a0d13903ca3599 Mon Sep 17 00:00:00 2001 From: kangod Date: Sun, 18 Feb 2024 15:55:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20vite=20=E7=83=AD?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=A4=B1=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=EF=BC=8C=E6=94=B9=E5=8C=BF=E5=90=8D=E7=AE=AD=E5=A4=B4=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E7=BB=84=E4=BB=B6=E4=B8=BA=20default=20function=20?= =?UTF-8?q?=E5=8A=A0=E5=90=8D=E5=AD=97=E5=86=8D=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/home/list.page.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/pages/home/list.page.tsx b/src/pages/home/list.page.tsx index 277a085..1663504 100644 --- a/src/pages/home/list.page.tsx +++ b/src/pages/home/list.page.tsx @@ -2,6 +2,8 @@ import { Column } from '@antv/g2plot'; import { Avatar, Button, Divider, Tabs, TabsProps } from 'antd'; import { useEffect, useRef } from 'react'; +import Card from '@/components/card'; + const data = [ { name: '您', @@ -95,7 +97,7 @@ const data = [ }, ]; -export default () => { +export default function Home() { const ref = useRef(null); // 图表。保证首次加载,且只加载一次 useEffect(() => { @@ -229,13 +231,17 @@ export default () => {
-
近八天系统访问记录
-
+ +
近八天系统访问记录
+
+
- + + +
); -}; +}