style: 网管历史告警中的告警产生时间和告警消除时间需支持升降序排序

This commit is contained in:
TsMask
2023-11-03 12:09:58 +08:00
parent 0979a8f391
commit 9d1782f806

View File

@@ -153,6 +153,7 @@ let tableColumns: ColumnsType = [
title: t('views.faultManage.activeAlarm.eventTime'),
dataIndex: 'eventTime',
align: 'center',
sorter: (a: any, b: any) => 1,
width: 5,
},
{
@@ -203,6 +204,13 @@ let tableColumns: ColumnsType = [
},
width: 5,
},
{
title: t('views.faultManage.activeAlarm.clearTime'),
dataIndex: 'clearTime',
align: 'center',
sorter: (a: any, b: any) => 1,
width: 5,
},
{
title: t('views.faultManage.activeAlarm.ackState'),
dataIndex: 'ackState',