- App.tsx 添加 10 条 lazy 路由(患者/医护/预约/随访/咨询) - MainLayout.tsx 添加健康管理菜单组(7 项菜单 + 10 条标题映射) - 创建 10 个页面占位组件
11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import { Card, Typography } from 'antd';
|
|
|
|
export default function PatientList() {
|
|
return (
|
|
<Card>
|
|
<Typography.Title level={4}>患者管理</Typography.Title>
|
|
<Typography.Text type="secondary">开发中</Typography.Text>
|
|
</Card>
|
|
);
|
|
}
|