|
@@ -149,11 +149,22 @@ class AnalysisResult extends Component {
|
|
|
<th>否定属性</th>
|
|
|
</tr>
|
|
|
{[...vitalClinicals,...vitals].map((item)=>{
|
|
|
+ if((item.usualList||[]).length){
|
|
|
+ return (item.usualList||[]).map((it)=>{
|
|
|
+ return <tr>
|
|
|
+ <td>{it.name}</td>
|
|
|
+ <td>{it.standName}</td>
|
|
|
+ <td>{it.value}</td>
|
|
|
+ <td>{(item.pd||{}).unit}</td>
|
|
|
+ <td>{(item.negative||{}).name}</td>
|
|
|
+ </tr>;
|
|
|
+ })
|
|
|
+ }
|
|
|
return <tr>
|
|
|
<td>{item.name}</td>
|
|
|
<td>{item.standName}</td>
|
|
|
- <td>{(item.pds||{}).value}</td>
|
|
|
- <td>{(item.pds||{}).unit}</td>
|
|
|
+ <td>{(item.pd||{}).value}</td>
|
|
|
+ <td>{(item.pd||{}).unit}</td>
|
|
|
<td>{(item.negative||{}).name}</td>
|
|
|
</tr>;
|
|
|
})}
|
|
@@ -177,7 +188,7 @@ class AnalysisResult extends Component {
|
|
|
<td>{item.detailName}</td>
|
|
|
<td>{item.uniqueName}</td>
|
|
|
<td>{item.value||item.otherValue}</td>
|
|
|
- <td>{item.unit}</td>
|
|
|
+ <td>{item.units}</td>
|
|
|
</tr>;
|
|
|
})}
|
|
|
{(lis||[]).map((item)=>{
|
|
@@ -187,7 +198,7 @@ class AnalysisResult extends Component {
|
|
|
<td>{item.detailName}</td>
|
|
|
<td>{item.uniqueName}</td>
|
|
|
<td>{item.value||item.otherValue}</td>
|
|
|
- <td>{item.unit}</td>
|
|
|
+ <td>{item.units}</td>
|
|
|
</tr>;
|
|
|
})}
|
|
|
</table>
|
|
@@ -228,9 +239,9 @@ class AnalysisResult extends Component {
|
|
|
{[...(res||[]),...(pacsNumList||[])].map((item)=>{
|
|
|
return <tr>
|
|
|
<td>{item.name}</td>
|
|
|
- <td>{item.uniqueName}</td>
|
|
|
- <td>{(item.pds||{}).value}</td>
|
|
|
- <td>{(item.pds||{}).unit}</td>
|
|
|
+ <td>{item.standName}</td>
|
|
|
+ <td>{(item.pd||{}).value}</td>
|
|
|
+ <td>{(item.pd||{}).unit}</td>
|
|
|
</tr>;
|
|
|
})}
|
|
|
</table>
|