Authored by wangtao
... ... @@ -6,7 +6,7 @@
<el-tooltip
placement="top-start">
<template #content>
展示每个场景的拨测结果,颜色代表拨测结果 <br/>
每个场景的拨测结果,通过颜色区分展示 <br/>
红色:拨测结果 < 70%; 橙色:70% <= 拨测结果 < 90% ; 蓝色:90% <= 拨测结果 < 100% ; 绿色:拨测结果 = 100%
</template>
<i class="iconfont icon-tishi" />
... ...
... ... @@ -7,7 +7,7 @@
<el-tooltip
placement="top-start">
<template #content>
以图标方式展示每个资源类型的告警结果,颜色代表告警结果 <br/>
每个资源类型的告警结果,通过颜色区分展示 <br/>
红色:存在严重告警; 黄色:存在重要告警; 橙色:存在一般告警; 绿色:无告警
</template>
<i class="iconfont icon-tishi" />
... ...
... ... @@ -41,7 +41,7 @@
<div style="width: 200px;margin-left: 20px;display: flex;align-self: center;color: red;align-items: center;">
<img src="../src/style/img/fault/base/alarm.png" style="width:22px;height: 22px;">
<span style="margin: 0px 6px 0px 6px;width: 105px;font-size: 16px;"> 告警</span>
<h style="font-size: 24px" class="text-link" @click="openAlarm()">{{getFaultItemValue(cardList,'abnormal')}}</h>
<h style="font-size: 24px" class="text-link" @click="openAlarm()">{{getFaultItemValue(cardList,'alarm')}}</h>
</div>
</div>
</div>
... ...
... ... @@ -129,7 +129,7 @@ export default {
}
//诊断指标
const openKpiList = () => {
service.sendEventDiagnoseKpiList(props.parentEmit, faultNo,targetType);
service.sendEventDiagnoseKpiList(props.parentEmit, faultNo,targetType,resClass);
}
//诊断项(正常、异常)
... ...
... ... @@ -6,7 +6,7 @@
<el-tooltip
placement="top-start">
<template #content>
展示每个链路节点数的监控结果,指标值颜色代表结果 <br/>
每个链路节点数的监控结果,通过颜色区分展示 <br/>
红色:监控结果 < 70%; 橙色:70% <= 监控结果 < 90% ; 蓝色:90% <= 监控结果 < 100% ; 绿色:监控结果:=100%
</template>
<i class="iconfont icon-tishi" />
... ...
... ... @@ -479,7 +479,7 @@ const faultEvent = () => {
* @param targetType 诊断类型
* @param columns 数组,表格列对象
*/
const sendEventDiagnoseKpiList = (emit, faultNo, targetType) => {
const sendEventDiagnoseKpiList = (emit, faultNo, targetType,resClass) => {
var obj = {
title: '诊断指标',
... ... @@ -507,7 +507,7 @@ const faultEvent = () => {
data: '',
}
store.dispatch('getFaultKpiList', {faultNo: faultNo, targetType: targetType}).then((res) => {
store.dispatch('getFaultKpiList', {faultNo: faultNo, targetType: targetType,resClass:resClass}).then((res) => {
if (res && res.success) {
obj.data = res.data;
emit('openDialog', 'more', {}, obj);
... ...