From 603cf5c8be42d2ddf8b0e3d77230184d5a71a0bf Mon Sep 17 00:00:00 2001 From: uiuJun <> Date: Fri, 10 Oct 2025 14:52:06 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E6=94=B9=E6=88=BF?= =?UTF-8?q?=E5=B1=8B=E8=B4=A6=E5=8D=95=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/bills/summary/show/$id.tsx | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/src/pages/bills/summary/show/$id.tsx b/src/pages/bills/summary/show/$id.tsx index daedc6a..0c7442f 100644 --- a/src/pages/bills/summary/show/$id.tsx +++ b/src/pages/bills/summary/show/$id.tsx @@ -13,6 +13,7 @@ export default function Show({ title = '账单详情' }) { const { id } = useParams<{ id: string }>(); const [data, setShow] = useState({}); + console.log(data, 'pppp'); // 注册标签页 const { addTab } = usePageTabs({ tabKey: `bill-detail-${id}`, @@ -43,29 +44,19 @@ export default function Show({ title = '账单详情' }) { label: '欠费账单', key: '1', closable: false, - children: ( - - ), + children: , }, { label: '已付账单', key: '2', closable: false, - children: ( - - ), + children: , }, { label: '作废账单', key: '3', closable: false, - children: ( - - ), + children: , }, ];