|
|
@ -434,16 +434,16 @@ const DealerWithdraw: React.FC = () => { |
|
|
|
</View> |
|
|
|
) : withdrawRecords.length > 0 ? ( |
|
|
|
withdrawRecords.map(record => ( |
|
|
|
<View key={record.id} className="rounded-lg p-4 mb-3 shadow-sm"> |
|
|
|
<View key={record.id} className="rounded-lg bg-gray-50 p-4 mb-3 shadow-sm"> |
|
|
|
<View className="flex justify-between items-start mb-3"> |
|
|
|
<View> |
|
|
|
<Space> |
|
|
|
<Text className="font-semibold text-gray-800 mb-1"> |
|
|
|
提现金额:¥{record.money} |
|
|
|
</Text> |
|
|
|
<Text className="text-sm text-gray-500"> |
|
|
|
提现账户:{record.accountDisplay} |
|
|
|
</Text> |
|
|
|
</View> |
|
|
|
</Space> |
|
|
|
<Tag type={getStatusColor(record.applyStatus)}> |
|
|
|
{getStatusText(record.applyStatus)} |
|
|
|
</Tag> |
|
|
@ -488,7 +488,7 @@ const DealerWithdraw: React.FC = () => { |
|
|
|
{renderWithdrawForm()} |
|
|
|
</Tabs.TabPane> |
|
|
|
|
|
|
|
<Tabs.TabPane title="提现记录" value="1" className={'bg-none'} style={{backgroundColor: 'transparent'}}> |
|
|
|
<Tabs.TabPane title="提现记录" value="1"> |
|
|
|
{renderWithdrawRecords()} |
|
|
|
</Tabs.TabPane> |
|
|
|
</Tabs> |
|
|
|