From c1742e9996b1d2306b62aa8aabab54fe85314161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Thu, 28 Aug 2025 01:38:05 +0800 Subject: [PATCH] =?UTF-8?q?style(dealer):=20=E4=BC=98=E5=8C=96=E6=8F=90?= =?UTF-8?q?=E7=8E=B0=E8=AE=B0=E5=BD=95=E5=88=97=E8=A1=A8=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为提现记录卡片添加浅灰色背景 - 使用 Space 组件替代 View 以提高代码可读性 - 移除提现记录标签页的透明背景样式 --- src/dealer/withdraw/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dealer/withdraw/index.tsx b/src/dealer/withdraw/index.tsx index 7ab011f..04a3cef 100644 --- a/src/dealer/withdraw/index.tsx +++ b/src/dealer/withdraw/index.tsx @@ -434,16 +434,16 @@ const DealerWithdraw: React.FC = () => { ) : withdrawRecords.length > 0 ? ( withdrawRecords.map(record => ( - + - + 提现金额:¥{record.money} 提现账户:{record.accountDisplay} - + {getStatusText(record.applyStatus)} @@ -488,7 +488,7 @@ const DealerWithdraw: React.FC = () => { {renderWithdrawForm()} - + {renderWithdrawRecords()}