样式优化

This commit is contained in:
2025-10-27 13:22:15 +08:00
parent 80a4cc35fa
commit f5df67cbd5
4 changed files with 23 additions and 28 deletions

View File

@@ -21,8 +21,7 @@ interface Transaction {
last_modify_time: string;
related_id: number;
type_text: string | null;
total_balance_after:string;
total_balance_after: string;
}
// 钱包信息类型
@@ -477,7 +476,7 @@ const WalletPage: React.FC = () => {
<Text className="currency_symbol">¥</Text>
<View className="amount_group">
<Text className="main_amount">
{(wallet_info.total_balance)?.toFixed(2)}
{wallet_info.total_balance?.toFixed(2)}
</Text>
{/* <Text className="decimal_amount">
.
@@ -589,10 +588,8 @@ const WalletPage: React.FC = () => {
{transaction.type_text}
</Text>
<Text className="transaction_amount">
{get_amount_display(transaction)}
</Text>
</View>
<Text className="balance_info">
@@ -606,7 +603,10 @@ const WalletPage: React.FC = () => {
// <View className="empty_state">
// <Text className="empty_text">暂无交易记录</Text>
// </View>
<EmptyState text="钱包空空如也,组织球局赚点球费吧" styles={{padding: "unset"}} />
<EmptyState
text="钱包空空如也,组织球局赚点球费吧"
styles={{ padding: "unset" }}
/>
)}
</View>
</View>