fix(Navbar): 优化用户头像悬停交互和订阅信息显示

- 将 Tooltip 改为 Popover 组件,支持鼠标悬停到弹出内容上
- 用户现在可以正常悬停到"点击头像管理订阅"提示
- 订阅信息新增到期日期显示,用户无需自己计算到期时间

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zdl
2025-12-15 16:23:29 +08:00
parent cbef50c3e5
commit f304268af9
3 changed files with 62 additions and 30 deletions

View File

@@ -620,13 +620,6 @@ export default function ProfilePage() {
{user?.last_seen ? new Date(user.last_seen).toLocaleDateString() : '未知'}
</Text>
</HStack>
<HStack justify="space-between" w="full">
<Text fontSize="sm" color="gray.600">账户状态</Text>
<Badge colorScheme={user?.status === 'active' ? 'green' : 'gray'}>
{user?.status === 'active' ? '正常' : '未激活'}
</Badge>
</HStack>
</VStack>
</CardBody>
</Card>