Формат даты на странице мониторинга исправлен

This commit is contained in:
goodmice 2021-10-25 14:57:06 +05:00
parent e82868bd2e
commit 35136f6269

View File

@ -21,30 +21,26 @@ const columns = [
{ {
title: 'Дата', title: 'Дата',
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'),
sorter: (a, b) => new Date(b.date) - new Date(a.date), sorter: (a, b) => new Date(b.date) - new Date(a.date),
sortDirections: ['descend', 'ascend'], sortDirections: ['descend', 'ascend'],
}, }, {
{
title: 'Глубина', title: 'Глубина',
key: 'wellDepth', key: 'wellDepth',
dataIndex: 'wellDepth', dataIndex: 'wellDepth',
render: (_, item) => <span>Глубина {_} м.</span>, render: depth => <span>Глубина {depth.toFixed(2)} м.</span>,
}, }, {
{
title: 'Категория', title: 'Категория',
dataIndex: 'categoryId', dataIndex: 'categoryId',
render: (_, item) => categoryDictionary[item.categoryId]?.title, render: (_, item) => categoryDictionary[item.categoryId]?.title,
style: (_, item) => categoryDictionary[item.categoryId]?.style, style: (_, item) => categoryDictionary[item.categoryId]?.style,
sorter: (a, b) => a.categoryId - b.categoryId, sorter: (a, b) => a.categoryId - b.categoryId,
sortDirections: ['descend', 'ascend'], sortDirections: ['descend', 'ascend'],
}, }, {
{
title: 'Сообщение', title: 'Сообщение',
dataIndex: 'message', dataIndex: 'message',
onFilter: (value, record) => record.name.indexOf(value) === 0, onFilter: (value, record) => record.name.indexOf(value) === 0,
}, }, {
{
title: 'Пользователь', title: 'Пользователь',
dataIndex: 'user', dataIndex: 'user',
}, },