|
@@ -225,7 +225,7 @@ class AnalysisResult extends Component {
|
|
<th>值</th>
|
|
<th>值</th>
|
|
<th>单位</th>
|
|
<th>单位</th>
|
|
</tr>
|
|
</tr>
|
|
- {[...res,...pacsNumList].map((item)=>{
|
|
|
|
|
|
+ {[...(res||[]),...(pacsNumList||[])].map((item)=>{
|
|
return <tr>
|
|
return <tr>
|
|
<td>{item.name}</td>
|
|
<td>{item.name}</td>
|
|
<td>{item.uniqueName}</td>
|
|
<td>{item.uniqueName}</td>
|
|
@@ -242,6 +242,12 @@ class AnalysisResult extends Component {
|
|
<th>原词</th>
|
|
<th>原词</th>
|
|
<th>转化为标准词</th>
|
|
<th>转化为标准词</th>
|
|
</tr>
|
|
</tr>
|
|
|
|
+ {(diag||[]).map((item)=>{
|
|
|
|
+ return <tr>
|
|
|
|
+ <td>{item.name}</td>
|
|
|
|
+ <td>{item.uniqueName}</td>
|
|
|
|
+ </tr>;
|
|
|
|
+ })}
|
|
</table>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div className="tableItem">
|
|
<div className="tableItem">
|