...
|
...
|
@@ -41,7 +41,7 @@ |
|
|
<div style="width: 200px;margin-left: 40px;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;color: red;" class="text-link" @click="openAlarm()">{{getFaultItemValue(cardList,'alarm')}}</h>
|
|
|
<h style="font-size: 24px;color: red;" class="text-link" @click="openAlarm('')">{{getFaultItemValue(cardList,'alarm')}}</h>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
...
|
...
|
@@ -52,14 +52,26 @@ |
|
|
</div>
|
|
|
<div v-if="cardOpen"
|
|
|
style="margin-top: 10px;background-color: whitesmoke;display: flex;justify-content: flex-start;flex-wrap: wrap;padding: 6px;max-height: 330px;overflow-y: auto;">
|
|
|
<div v-for="item in dialTest" style="width: 25%">
|
|
|
<div v-for="item in dialTest">
|
|
|
<div style="min-width: 338px;height: 160px;background: url(../src/style/img/fault/base/bg.png) no-repeat;background-size: 100% 100%;padding-top: 10px;">
|
|
|
<el-row style="height: 70px;padding: 10px 30px;">
|
|
|
<el-col :span="4" style="line-height: 55px;">
|
|
|
<el-tooltip
|
|
|
placement="top-start">
|
|
|
<template #content>
|
|
|
{{item.resTypeName}}
|
|
|
</template>
|
|
|
<img :src="'../src/style/img/fault/base/base-'+item.resClass+'-'+item.health+'.png'">
|
|
|
</el-tooltip>
|
|
|
</el-col>
|
|
|
<el-col :span="16" style="color: #666666;">
|
|
|
<el-tooltip
|
|
|
placement="top-start">
|
|
|
<template #content>
|
|
|
{{item.resName}}
|
|
|
</template>
|
|
|
<div class="text-overflow" style="font-size: 16px">{{item.resName}}</div>
|
|
|
</el-tooltip>
|
|
|
<div style="font-size: 14px">IP地址:{{item.ipAddr}}</div>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="align-right">
|
...
|
...
|
@@ -123,7 +135,7 @@ |
|
|
<img src="../src/style/img/fault/base/men.png"><br/>
|
|
|
{{item.men}}{{item.menUnit}}
|
|
|
</el-col>
|
|
|
<el-col :span="5" class="align-center">
|
|
|
<el-col :span="5" class="text-link align-center" @click="openAlarm(item.resId)">
|
|
|
<img src="../src/style/img/fault/base/alarm.png"><br/>
|
|
|
{{item.alarm}}
|
|
|
</el-col>
|
...
|
...
|
@@ -159,7 +171,7 @@ |
|
|
<el-col :span="1" class="align-center">
|
|
|
<img src="../src/style/img/fault/base/alarm.png">
|
|
|
</el-col>
|
|
|
<el-col :span="3" class="align-center">
|
|
|
<el-col :span="3" class="text-link align-center" @click="openAlarm(item.resId)">
|
|
|
{{item.alarm}}
|
|
|
</el-col>
|
|
|
<el-col :span="8" style="line-height: 36px;color: gainsboro;">
|
...
|
...
|
|