update pay ui

This commit is contained in:
2025-12-12 10:56:18 +08:00
parent b30bd2cb69
commit 8171136103
6 changed files with 22 additions and 821 deletions

View File

@@ -92,7 +92,9 @@ const MobileDrawer = memo(({
/>
<Box>
<Text fontSize="sm" fontWeight="bold">{getDisplayName()}</Text>
<Text fontSize="xs" color={emailTextColor}>{user.email}</Text>
{user.phone && (
<Text fontSize="xs" color={emailTextColor}>{user.phone}</Text>
)}
</Box>
</HStack>
</Box>

View File

@@ -61,7 +61,6 @@ const PersonalCenterMenu = memo(({ user, handleLogout }) => {
{/* 用户信息区 */}
<Box px={3} py={2} borderBottom="1px" borderColor="gray.200">
<Text fontSize="sm" fontWeight="bold">{getDisplayName()}</Text>
<Text fontSize="xs" color="gray.500">{user.email}</Text>
{user.phone && (
<Text fontSize="xs" color="gray.500">{user.phone}</Text>
)}

View File

@@ -75,7 +75,6 @@ const TabletUserMenu = memo(({
{/* 用户信息区 */}
<Box px={3} py={2} borderBottom="1px" borderColor={borderColor}>
<Text fontSize="sm" fontWeight="bold">{getDisplayName()}</Text>
<Text fontSize="xs" color="gray.500">{user.email}</Text>
{user.phone && (
<Text fontSize="xs" color="gray.500">{user.phone}</Text>
)}