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 = [
{
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 => <span>{depth.toFixed(2)} м.</span>,
}, {
width: '10%',
title: 'Категория',
key: 'categoryId',
dataIndex: 'categoryId',
@ -42,6 +45,7 @@ const columns = [
key: 'message',
dataIndex: 'message',
}, {
width: '10%',
title: 'Пользователь',
key: 'user',
dataIndex: 'user',

View File

@ -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}) => {