样式优化
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user