From f549219be2a914f1ffde2865ac5c32e2eca8430f Mon Sep 17 00:00:00 2001 From: goodmice Date: Fri, 29 Oct 2021 16:22:56 +0500 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BB=D1=8F=20=D1=81=D1=82=D0=BE=D0=BB?= =?UTF-8?q?=D0=B1=D1=86=D0=BE=D0=B2=20=D0=A0=D0=A2=D0=9A=20=D0=B4=D0=BE?= =?UTF-8?q?=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=B5=D0=B4=D0=B8?= =?UTF-8?q?=D0=BD=D0=B8=D1=86=D1=8B=20=D0=B8=D0=B7=D0=BC=D0=B5=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/WellOperations/DrillProcessFlow.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/WellOperations/DrillProcessFlow.jsx b/src/pages/WellOperations/DrillProcessFlow.jsx index c078fe0..cd75ae7 100644 --- a/src/pages/WellOperations/DrillProcessFlow.jsx +++ b/src/pages/WellOperations/DrillProcessFlow.jsx @@ -9,12 +9,12 @@ import { EditableTable } from '../../components/Table' import { DrillFlowChartService } from '../../services/api' const columns = [ - makeNumericStartEnd('Глубина', 'depth'), - makeNumericMinMax('Нагрузка', 'axialLoad'), - makeNumericMinMax('Давление', 'pressure'), - makeNumericMinMax('Момент на ВСП', 'rotorTorque'), - makeNumericMinMax('Обороты на ВСП', 'rotorSpeed'), - makeNumericMinMax('Расход', 'flow') + makeNumericStartEnd('Глубина, м', 'depth'), + makeNumericMinMax('Нагрузка, т', 'axialLoad'), + makeNumericMinMax('Давление, атм', 'pressure'), + makeNumericMinMax('Момент на ВСП, кН·м', 'rotorTorque'), + makeNumericMinMax('Обороты на ВСП, об/мин', 'rotorSpeed'), + makeNumericMinMax('Расход, л/с', 'flow') ] export const DrillProcessFlow = ({idWell}) => {