2021-08-27 11:49:32 +05:00
|
|
|
import { TelemetryAnalysisDepthToDay } from '../src/components/TelemetryAnalysisDepthToDay'
|
|
|
|
import { TelemetryAnalysisDepthToInterval } from '../src/components/TelemetryAnalysisDepthToInterval'
|
2021-08-18 11:40:46 +05:00
|
|
|
import { AnalysisOperationTime } from '../src/components/AnalysisOperationTime'
|
2021-07-21 15:36:08 +05:00
|
|
|
import { Row, Col } from 'antd'
|
2021-05-28 12:04:38 +05:00
|
|
|
|
2021-08-27 11:49:32 +05:00
|
|
|
export default function TelemetryAnalysis({idWell}) {
|
2021-07-20 16:15:44 +05:00
|
|
|
|
2021-05-27 12:53:42 +05:00
|
|
|
return (
|
2021-07-19 17:28:09 +05:00
|
|
|
<>
|
2021-07-23 12:01:07 +05:00
|
|
|
<Row> </Row>
|
|
|
|
<Row justify="space-around" align="middle">
|
2021-07-21 15:36:08 +05:00
|
|
|
<Col span={10}>
|
2021-07-23 12:01:07 +05:00
|
|
|
<h2>График Глубина-день</h2>
|
2021-08-27 11:49:32 +05:00
|
|
|
<TelemetryAnalysisDepthToDay idWell={idWell}/>
|
2021-07-21 15:36:08 +05:00
|
|
|
</Col>
|
|
|
|
<Col span={10}>
|
2021-07-23 12:01:07 +05:00
|
|
|
<h2>График Глубина за интервал</h2>
|
2021-08-27 11:49:32 +05:00
|
|
|
<TelemetryAnalysisDepthToInterval idWell={idWell}/>
|
2021-07-21 15:36:08 +05:00
|
|
|
</Col>
|
2021-07-23 12:01:07 +05:00
|
|
|
</Row >
|
|
|
|
<Row><div style={{height: "150px"}}> </div></Row>
|
|
|
|
<Row justify="space-around" align="middle">
|
2021-07-21 15:36:08 +05:00
|
|
|
<Col span={10}>
|
2021-07-23 12:01:07 +05:00
|
|
|
<h2>График Операция за время</h2>
|
2021-07-27 16:17:14 +05:00
|
|
|
<AnalysisOperationTime idWell={idWell}/>
|
2021-07-21 15:36:08 +05:00
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-07-19 17:28:09 +05:00
|
|
|
</>
|
2021-05-27 12:53:42 +05:00
|
|
|
)
|
|
|
|
}
|