forked from ddrilling/asb_cloud_front
Формат даты на странице мониторинга исправлен
This commit is contained in:
parent
e82868bd2e
commit
35136f6269
@ -21,30 +21,26 @@ const columns = [
|
||||
{
|
||||
title: 'Дата',
|
||||
dataIndex: 'date',
|
||||
render: (item) => moment(item).format('DD MMM YYYY, HH:MM:ss'),
|
||||
render: (item) => moment(item).format('DD MMM YYYY, HH:mm:ss'),
|
||||
sorter: (a, b) => new Date(b.date) - new Date(a.date),
|
||||
sortDirections: ['descend', 'ascend'],
|
||||
},
|
||||
{
|
||||
}, {
|
||||
title: 'Глубина',
|
||||
key: 'wellDepth',
|
||||
dataIndex: 'wellDepth',
|
||||
render: (_, item) => <span>Глубина {_} м.</span>,
|
||||
},
|
||||
{
|
||||
render: depth => <span>Глубина {depth.toFixed(2)} м.</span>,
|
||||
}, {
|
||||
title: 'Категория',
|
||||
dataIndex: 'categoryId',
|
||||
render: (_, item) => categoryDictionary[item.categoryId]?.title,
|
||||
style: (_, item) => categoryDictionary[item.categoryId]?.style,
|
||||
sorter: (a, b) => a.categoryId - b.categoryId,
|
||||
sortDirections: ['descend', 'ascend'],
|
||||
},
|
||||
{
|
||||
}, {
|
||||
title: 'Сообщение',
|
||||
dataIndex: 'message',
|
||||
onFilter: (value, record) => record.name.indexOf(value) === 0,
|
||||
},
|
||||
{
|
||||
}, {
|
||||
title: 'Пользователь',
|
||||
dataIndex: 'user',
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user