17 lines
529 B
React
17 lines
529 B
React
|
|
import { Card } from 'antd'
|
|||
|
|
import { TeamOutlined } from '@ant-design/icons'
|
|||
|
|
|
|||
|
|
function UserManage() {
|
|||
|
|
return (
|
|||
|
|
<Card style={{ borderRadius: 16 }}>
|
|||
|
|
<div style={{ textAlign: 'center', padding: '48px 0', color: '#999' }}>
|
|||
|
|
<TeamOutlined style={{ fontSize: 48, marginBottom: 16 }} />
|
|||
|
|
<h3 style={{ color: '#666' }}>用户管理</h3>
|
|||
|
|
<p>Phase 2 实施</p>
|
|||
|
|
<small>管理员创建账号 / 角色分配(仅 zhipianren 可见)</small>
|
|||
|
|
</div>
|
|||
|
|
</Card>
|
|||
|
|
)
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
export default UserManage
|