|
@@ -0,0 +1,24 @@
|
|
|
+import React from 'react';
|
|
|
+import { Table } from 'antd';
|
|
|
+
|
|
|
+const columns = [
|
|
|
+ { title: '患者编号', dataIndex: 'patientId' },
|
|
|
+ { title: '患者姓名', dataIndex: 'name' },
|
|
|
+ { title: '曾用名', dataIndex: 'alias' },
|
|
|
+ { title: '英文名', dataIndex: 'englishName' },
|
|
|
+ { title: '登记号', dataIndex: 'registrationId' },
|
|
|
+ { title: '出生日期', dataIndex: 'birthDate' },
|
|
|
+ { title: '年龄', dataIndex: 'age' },
|
|
|
+ { title: '性别', dataIndex: 'gender' },
|
|
|
+ { title: '病人体型', dataIndex: 'bodyType' },
|
|
|
+ { title: '体重', dataIndex: 'weight' },
|
|
|
+ { title: '身高', dataIndex: 'height' },
|
|
|
+ { title: '怀孕状态', dataIndex: 'pregnancyStatus' },
|
|
|
+ { title: '转诊医师', dataIndex: 'referringDoctor' },
|
|
|
+];
|
|
|
+
|
|
|
+const WorklistTable: React.FC = () => {
|
|
|
+ return <Table columns={columns} dataSource={[]} rowKey="patientId" />;
|
|
|
+};
|
|
|
+
|
|
|
+export default WorklistTable;
|