asb_cloud_front/concept/TelemetryAnalysis.jsx

30 lines
1.1 KiB
JavaScript
Executable File

import { TelemetryAnalysisDepthToDay } from '../src/components/TelemetryAnalysisDepthToDay'
import { TelemetryAnalysisDepthToInterval } from '../src/components/TelemetryAnalysisDepthToInterval'
import { AnalysisOperationTime } from '../src/components/AnalysisOperationTime'
import { Row, Col } from 'antd'
export default function TelemetryAnalysis({idWell}) {
return (
<>
<Row>&nbsp;</Row>
<Row justify="space-around" align="middle">
<Col span={10}>
<h2>График Глубина-день</h2>
<TelemetryAnalysisDepthToDay idWell={idWell}/>
</Col>
<Col span={10}>
<h2>График Глубина за интервал</h2>
<TelemetryAnalysisDepthToInterval idWell={idWell}/>
</Col>
</Row >
<Row><div style={{height: "150px"}}>&nbsp;</div></Row>
<Row justify="space-around" align="middle">
<Col span={10}>
<h2>График Операция за время</h2>
<AnalysisOperationTime idWell={idWell}/>
</Col>
</Row>
</>
)
}