diff --git a/src/pages/Cluster.jsx b/src/pages/Cluster.jsx
index d8743b3..74855b2 100644
--- a/src/pages/Cluster.jsx
+++ b/src/pages/Cluster.jsx
@@ -1,8 +1,143 @@
import {useParams} from "react-router-dom";
+import {Link} from "react-router-dom";
+import LoaderPortal from '../components/LoaderPortal'
+import { useState, useEffect } from "react";
+import {ClusterService} from '../services/api'
+import notify from '../components/notify'
+import {Table, Tag, Button} from 'antd';
-export default function Cluster() {
-
+const columns = [
+ {
+ title: 'скв №',
+ key: 'caption',
+ dataIndex: 'caption',
+ render: (_, item) => {item.caption}
+ },
+ {
+ title: 'Тип скв.',
+ key: 'wellType',
+ dataIndex: 'wellType',
+ },
+ {
+ title: 'Фактические сроки бурения',
+ children: [
+ {
+ title: 'начало',
+ key: 'factStart',
+ dataIndex: 'factStart',
+ },
+ {
+ title: 'окончание',
+ key: 'factEnd',
+ dataIndex: 'factEnd',
+ },
+ ]
+ },
+ {
+ title: 'Продолжительность бурения',
+ children: [
+ {
+ title: 'план',
+ key: 'periodPlan',
+ dataIndex: 'periodPlan',
+ },
+ {
+ title: 'факт',
+ key: 'periodFact',
+ dataIndex: 'periodFact',
+ },
+ ]
+ },
+ {
+ title: 'МСП за скв',
+ children: [
+ {
+ title: 'план',
+ key: 'rateOfPenetrationPlan',
+ dataIndex: 'rateOfPenetrationPlan',
+ },
+ {
+ title: 'факт',
+ key: 'rateOfPenetrationFact',
+ dataIndex: 'rateOfPenetrationFact',
+ },
+ ],
+ },
+ {
+ title: 'Рейсовая скорость за скв',
+ children: [
+ {
+ title: 'план',
+ key: 'routeSpeedPlan',
+ dataIndex: 'routeSpeedPlan',
+ },
+ {
+ title: 'факт',
+ key: 'routeSpeedFact',
+ dataIndex: 'routeSpeedFact',
+ },
+ ],
+ },
+ {
+ title: 'Секции',
+ key: 'sections',
+ dataIndex: 'sections',
+ render: (item) => (таблица по секциям)
+ },
+ {
+ title: 'График глубина-день',
+ render: _ => ()
+ },
+ {
+ title: 'Таблица по операциям',
+ render: _ => ()
+ },
+ {
+ title: 'Подрядчики',
+ key: 'companies',
+ dataIndex: 'companies',
+ render: (item) => item.map(company =>