import React from "react";
import style from "../index.less";
class WrapModalTable extends React.Component {
constructor(props) {
super(props)
}
render() {
const { hospitalPac, handleGetSonList, msgObj } = this.props;
return
申请单号 |
申请时间 |
检查项目 |
检查号 |
类型 |
患者姓名 |
病人编号 |
检查时间 |
报告时间 |
4 ? '' : 'none' }}> |
{
hospitalPac && hospitalPac.map((item, idx) => {
return handleGetSonList(item.checkItem, item.reportTime)}>
{item.applicationNum} |
{item.applicationDate} |
{item.checkItem} |
{item.checkNum} |
{item.type} |
{msgObj.name} |
{msgObj.patientNum} |
{item.inspectTime} |
{item.reportTime} |
})
}
}
}
export default WrapModalTable;