|
|
@@ -310,6 +310,9 @@ const Index = (props) => {
|
|
|
<Descriptions.Item label="告警级别">
|
|
|
{levelMap[props.data?.data?.alarm_level]}
|
|
|
</Descriptions.Item>
|
|
|
+ <Descriptions.Item label="告警类型">
|
|
|
+ {alarmTypeMap[props.data?.data?.type]}
|
|
|
+ </Descriptions.Item>
|
|
|
<Descriptions.Item label="恢复时间">
|
|
|
{props.data?.data?.recovery_time || "-"}
|
|
|
</Descriptions.Item>
|
|
|
@@ -319,10 +322,6 @@ const Index = (props) => {
|
|
|
<Descriptions.Item label="告警时间">
|
|
|
{props.data?.data?.created_time}
|
|
|
</Descriptions.Item>
|
|
|
- <Descriptions.Item label="告警类型">
|
|
|
- {alarmTypeMap[props.data?.data?.type]}
|
|
|
- </Descriptions.Item>
|
|
|
-
|
|
|
<Descriptions.Item label="告警状态">
|
|
|
{alarmStatusMap[props.data?.data?.status]}
|
|
|
</Descriptions.Item>
|