forked from ddrilling/asb_cloud_front
Merge branch 'feature/CF2-87-Archive-page-redesign' into dev
This commit is contained in:
commit
2c6a422e90
@ -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',
|
||||
|
@ -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}) => {
|
||||
|
Loading…
Reference in New Issue
Block a user