diff --git a/src/pages/Messages.jsx b/src/pages/Messages.jsx index 7910e03..20603c5 100644 --- a/src/pages/Messages.jsx +++ b/src/pages/Messages.jsx @@ -21,16 +21,19 @@ const categoryDictionary = { const columns = [ { + width: '10%', title: 'Дата', key: 'date', dataIndex: 'date', render: item => moment(item).format('DD MMM YYYY, HH:mm:ss'), }, { + width: '10%', title: 'Глубина', key: 'wellDepth', dataIndex: 'wellDepth', render: depth => {depth.toFixed(2)} м., }, { + width: '10%', title: 'Категория', key: 'categoryId', dataIndex: 'categoryId', @@ -42,6 +45,7 @@ const columns = [ key: 'message', dataIndex: 'message', }, { + width: '10%', title: 'Пользователь', key: 'user', dataIndex: 'user', 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}) => {