feat(frontend): Day 7 - frontend complete layout finished

This commit is contained in:
AI Clinical Dev Team
2025-10-10 17:52:47 +08:00
parent df20300190
commit fef8feb9db
11 changed files with 872 additions and 129 deletions

View File

@@ -0,0 +1,36 @@
import { Card, Empty, Alert } from 'antd'
import { HistoryOutlined, SyncOutlined } from '@ant-design/icons'
const HistoryPage = () => {
return (
<div>
<Alert
message="功能开发中"
description="历史记录功能正在开发中,您将能够查看和管理所有对话历史..."
type="warning"
showIcon
icon={<SyncOutlined spin />}
style={{ marginBottom: 24 }}
/>
<Card>
<Empty
image={Empty.PRESENTED_IMAGE_SIMPLE}
imageStyle={{ height: 120 }}
description={
<div>
<HistoryOutlined style={{ fontSize: 48, color: '#d9d9d9', marginBottom: 16 }} />
<div style={{ color: '#999' }}>线</div>
<div style={{ color: '#ccc', fontSize: 12, marginTop: 8 }}>
</div>
</div>
}
/>
</Card>
</div>
)
}
export default HistoryPage