diff --git a/src/views/faultManage/history-alarm/index.vue b/src/views/faultManage/history-alarm/index.vue index 3c75f1dd..8234d89d 100644 --- a/src/views/faultManage/history-alarm/index.vue +++ b/src/views/faultManage/history-alarm/index.vue @@ -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',