|
@@ -9,16 +9,21 @@ const BodyPositionDetail: React.FC = () => {
|
|
return (
|
|
return (
|
|
<Card className="p-4">
|
|
<Card className="p-4">
|
|
<Row gutter={[16, 16]}>
|
|
<Row gutter={[16, 16]}>
|
|
- <Col span={24}>
|
|
|
|
|
|
+ {/* 第一行 : 患者姓名*/}
|
|
|
|
+ <Col span={24} className="text-center">
|
|
<Title level={4}>Patient Name</Title>
|
|
<Title level={4}>Patient Name</Title>
|
|
</Col>
|
|
</Col>
|
|
- <Col span={24}>
|
|
|
|
|
|
+ {/* 第二行 :患者id,登记号,study描述*/}
|
|
|
|
+ <Col span={8}>
|
|
<Text>Patient ID: 12345</Text>
|
|
<Text>Patient ID: 12345</Text>
|
|
- <br />
|
|
|
|
|
|
+ </Col>
|
|
|
|
+ <Col span={8}>
|
|
<Text>Registration Number: 67890</Text>
|
|
<Text>Registration Number: 67890</Text>
|
|
- <br />
|
|
|
|
|
|
+ </Col>
|
|
|
|
+ <Col span={8}>
|
|
<Text>Study Description: Example Study</Text>
|
|
<Text>Study Description: Example Study</Text>
|
|
</Col>
|
|
</Col>
|
|
|
|
+ {/* 第三行 :体位示意图*/}
|
|
<Col span={24}>
|
|
<Col span={24}>
|
|
<div className="flex justify-center">
|
|
<div className="flex justify-center">
|
|
<img
|
|
<img
|
|
@@ -28,9 +33,11 @@ const BodyPositionDetail: React.FC = () => {
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Col>
|
|
</Col>
|
|
|
|
+ {/* 第四行 :体位描述*/}
|
|
<Col span={24}>
|
|
<Col span={24}>
|
|
<Text>View Description: Example View</Text>
|
|
<Text>View Description: Example View</Text>
|
|
</Col>
|
|
</Col>
|
|
|
|
+ {/* 第五行 :设备信息*/}
|
|
<Col span={24}>
|
|
<Col span={24}>
|
|
<div className="flex items-center">
|
|
<div className="flex items-center">
|
|
<Image src={CollimatorIcon} alt="Logo" height={'100%'} />
|
|
<Image src={CollimatorIcon} alt="Logo" height={'100%'} />
|
|
@@ -39,6 +46,7 @@ const BodyPositionDetail: React.FC = () => {
|
|
<Text>Collimator Width: 50mm</Text>
|
|
<Text>Collimator Width: 50mm</Text>
|
|
</div>
|
|
</div>
|
|
</Col>
|
|
</Col>
|
|
|
|
+ {/* 第六行 */}
|
|
<Col span={24}>
|
|
<Col span={24}>
|
|
<div className="flex items-center">
|
|
<div className="flex items-center">
|
|
<Image src={SidIcon} alt="Logo" className="mr-2" height={'100%'} />
|
|
<Image src={SidIcon} alt="Logo" className="mr-2" height={'100%'} />
|