50 lines
1.7 KiB
JavaScript
50 lines
1.7 KiB
JavaScript
|
|
import React from 'react';
|
||
|
|
|
||
|
|
import Dialog from '@material-ui/core/Dialog';
|
||
|
|
import DialogContent from '@material-ui/core/DialogContent';
|
||
|
|
import DpPaperComponent from '../../../../layouts/mui/DpPaperCompanent';
|
||
|
|
import DpTabs from '../../../../layouts/mui/DpTabs';
|
||
|
|
import DpTab from '../../../../layouts/mui/DpTab';
|
||
|
|
import RzSearch from '../../components/RzSearch';
|
||
|
|
import DpAppBar from '../../../../layouts/mui/DpAppBar';
|
||
|
|
import DpBackgroundDrop from '../../../../layouts/mui/DpBackdrop';
|
||
|
|
import DpCloseButton from '../../../../layouts/mui/DpCloseButton';
|
||
|
|
import DrpSearch from '../../components/DrpSearch';
|
||
|
|
import DrpStAround from '../../components/DrpStAround';
|
||
|
|
import LlqdJcsj from '../../components/Llqdjcsj'
|
||
|
|
import GqJbxx from './jbxx';
|
||
|
|
import Gqspxx from '../GqbzDlg/spxx'
|
||
|
|
|
||
|
|
function HDStDlg({ record, onClose }) {
|
||
|
|
const [value, setValue] = React.useState(0);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Dialog
|
||
|
|
open={true}
|
||
|
|
onClose={onClose}
|
||
|
|
maxWidth="xl"
|
||
|
|
style={{ borderRadius: 0 }}
|
||
|
|
PaperComponent={DpPaperComponent}
|
||
|
|
BackdropComponent={DpBackgroundDrop}
|
||
|
|
>
|
||
|
|
<div className="boxhead"></div>
|
||
|
|
|
||
|
|
<DpAppBar position="sticky" style={{ justifyContent: "space-between",alignItems:'center' }}>
|
||
|
|
<span style={{marginLeft:10,fontSize:20}}>
|
||
|
|
{record.stnm}
|
||
|
|
</span>
|
||
|
|
<DpCloseButton onClick={onClose} />
|
||
|
|
</DpAppBar>
|
||
|
|
<DialogContent style={{ padding: 0, width: '80rem', overflowX: 'hidden' }}>
|
||
|
|
<div style={{ padding: '2rem', hminHeight: '50rem',maxHeight: '60rem' }}>
|
||
|
|
<LlqdJcsj record={record} />
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</DialogContent>
|
||
|
|
<div className="boxfoot"></div>
|
||
|
|
</Dialog>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default React.memo(HDStDlg);
|