...
|
...
|
@@ -2,7 +2,7 @@ |
|
|
<div class="d-flex" v-model="cardList">
|
|
|
<div class="d-flex align-center" style="width: 187px;padding-left: 113px;">
|
|
|
<!--<span style="width: 10px;height: 10px;background-color: red;border-radius: 50%"> </span>-->
|
|
|
<i class="iconfont icon-dian" style="font-size: 32px;color: red;"/>
|
|
|
<i :style="{color: alarmColor}" class="iconfont icon-dian" style="font-size: 32px;"/>
|
|
|
<img class="m-l-6" :src="'../src/style/img/fault/base/resType/'+cardList.resClass+'.png'" >
|
|
|
<a class="m-l-6">{{cardList.resClassName}}</a>
|
|
|
</div>
|
...
|
...
|
@@ -47,12 +47,12 @@ |
|
|
</div>
|
|
|
</div>
|
|
|
<div class="align-center" style="flex: 1;text-align: right;margin-right: 80px;">
|
|
|
<a class="m-r-20" @click="allCard()">更多</a>
|
|
|
<a @click="closeCard()">收起</a>
|
|
|
<a class="m-r-20" @click="">更多</a>
|
|
|
<a v-model="cardName" @click="openOrCloseCard(cardList.faultFixInfoList)">{{cardName}}</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-if="cardOpen"
|
|
|
style="margin-top: 10px;background-color: whitesmoke;display: flex;justify-content: flex-start;flex-wrap: wrap;padding: 6px;">
|
|
|
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 cardList.faultFixInfoList" style="width: 25%">
|
|
|
<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;">
|
...
|
...
|
@@ -64,7 +64,7 @@ |
|
|
</el-col>
|
|
|
<el-col :span="16">
|
|
|
{{item[0].resName}}<br>
|
|
|
{{item[0].ipAddr}}
|
|
|
IP地址:{{item[0].ipAddr}}
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="align-right">
|
|
|
<i class="iconfont icon-gengduo-shuxiang" style="font-size: 30px;"></i>
|
...
|
...
|
@@ -72,7 +72,7 @@ |
|
|
</el-row>
|
|
|
|
|
|
<el-row style="height: 70px;padding: 10px 30px;" v-if="item[0].resClass=='system'">
|
|
|
<el-col :span="4" class="align-center">
|
|
|
<el-col :span="4" class="align-center" style="margin: auto;">
|
|
|
<img v-if="item[3].diagnosisResult =='连接成功'" src="../src/style/img/fault/base/linkSucccess.png" >
|
|
|
<img v-else src="../src/style/img/fault/base/linkError.png" >
|
|
|
</el-col>
|
...
|
...
|
@@ -84,21 +84,18 @@ |
|
|
{{item[2].diagnosisResult}}
|
|
|
</el-col>
|
|
|
<el-col :span="1" style="line-height: 36px;color: gainsboro;">
|
|
|
|
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="align-center">
|
|
|
<img src="../src/style/img/fault/base/内存.png"><br/>
|
|
|
{{item[1].diagnosisResult}}%
|
|
|
</el-col>
|
|
|
<el-col :span="1" style="line-height: 36px;color: gainsboro;">
|
|
|
|
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="align-center">
|
|
|
<img src="../src/style/img/fault/base/alarm.png"><br/>
|
|
|
{{item[0].alarmNum}}
|
|
|
</el-col>
|
|
|
<el-col :span="1" style="line-height: 36px;color: gainsboro;">
|
|
|
|
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="align-center">
|
|
|
<img src="../src/style/img/fault/base/时间-绿.png"><br/>
|
...
|
...
|
@@ -106,11 +103,11 @@ |
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row style="height: 70px;padding: 10px 30px;" v-if="item[0].resClass!='system'">
|
|
|
<el-col :span="4" class="align-center" v-if="item[0].resClass!='middleware'">
|
|
|
<el-col :span="4" class="align-center" v-if="item[0].resClass!='middleware'" >
|
|
|
<img src="../src/style/img/fault/base/linkSucccess.png" v-if="item[0].diagnosisResult=='连接成功'">
|
|
|
<img src="../src/style/img/fault/base/linkError.png" v-else>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="align-center" v-else>
|
|
|
<el-col :span="4" class="align-center" v-else >
|
|
|
<img src="../src/style/img/fault/base/linkSucccess.png">
|
|
|
<img src="../src/style/img/fault/base/linkError.png">
|
|
|
</el-col>
|
...
|
...
|
|