Merge branch 'feature/CF2-87-Archive-page-redesign' into dev

This commit is contained in:
goodmice 2021-10-29 17:12:49 +05:00
commit 2c6a422e90
2 changed files with 10 additions and 6 deletions

View File

@ -21,16 +21,19 @@ const categoryDictionary = {
const columns = [ const columns = [
{ {
width: '10%',
title: 'Дата', title: 'Дата',
key: 'date', key: 'date',
dataIndex: 'date', dataIndex: 'date',
render: item => moment(item).format('DD MMM YYYY, HH:mm:ss'), render: item => moment(item).format('DD MMM YYYY, HH:mm:ss'),
}, { }, {
width: '10%',
title: 'Глубина', title: 'Глубина',
key: 'wellDepth', key: 'wellDepth',
dataIndex: 'wellDepth', dataIndex: 'wellDepth',
render: depth => <span>{depth.toFixed(2)} м.</span>, render: depth => <span>{depth.toFixed(2)} м.</span>,
}, { }, {
width: '10%',
title: 'Категория', title: 'Категория',
key: 'categoryId', key: 'categoryId',
dataIndex: 'categoryId', dataIndex: 'categoryId',
@ -42,6 +45,7 @@ const columns = [
key: 'message', key: 'message',
dataIndex: 'message', dataIndex: 'message',
}, { }, {
width: '10%',
title: 'Пользователь', title: 'Пользователь',
key: 'user', key: 'user',
dataIndex: 'user', dataIndex: 'user',

View File

@ -9,12 +9,12 @@ import { EditableTable } from '../../components/Table'
import { DrillFlowChartService } from '../../services/api' import { DrillFlowChartService } from '../../services/api'
const columns = [ const columns = [
makeNumericStartEnd('Глубина', 'depth'), makeNumericStartEnd('Глубина, м', 'depth'),
makeNumericMinMax('Нагрузка', 'axialLoad'), makeNumericMinMax('Нагрузка, т', 'axialLoad'),
makeNumericMinMax('Давление', 'pressure'), makeNumericMinMax('Давление, атм', 'pressure'),
makeNumericMinMax('Момент на ВСП', 'rotorTorque'), makeNumericMinMax('Момент на ВСП, кН·м', 'rotorTorque'),
makeNumericMinMax('Обороты на ВСП', 'rotorSpeed'), makeNumericMinMax('Обороты на ВСП, об/мин', 'rotorSpeed'),
makeNumericMinMax('Расход', 'flow') makeNumericMinMax('Расход, л/с', 'flow')
] ]
export const DrillProcessFlow = ({idWell}) => { export const DrillProcessFlow = ({idWell}) => {