1
This commit is contained in:
parent
10c5e3b730
commit
9eafc09704
@ -1936,7 +1936,11 @@ textarea {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
padding: 50px 30px 0;
|
||||
padding: 20px 30px 0;
|
||||
}
|
||||
|
||||
.dataModel .view-new.border {
|
||||
border-bottom: 1px solid rgba(0, 186, 255, 0.2);
|
||||
}
|
||||
|
||||
.dataModel .view-new .list-view {
|
||||
@ -1945,6 +1949,7 @@ textarea {
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 20px;
|
||||
min-width: 160px;
|
||||
}
|
||||
|
||||
.dataModel .view-new .list-view img {
|
||||
|
@ -2037,8 +2037,11 @@ textarea{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
padding: 50px 30px 0;
|
||||
padding: 20px 30px 0;
|
||||
|
||||
&.border{
|
||||
border-bottom: 1px solid rgba(0, 186, 255, 0.2);
|
||||
}
|
||||
.list-view {
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
@ -2046,7 +2049,7 @@ textarea{
|
||||
align-items: center;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 20px;
|
||||
|
||||
min-width: 160px;
|
||||
img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
|
@ -426,14 +426,38 @@
|
||||
<el-button class="model-return-btn" type="primary" @click="dataModel = false">返 回</el-button>
|
||||
<div class="vrcode-model-title vrcode-model-title-282">实时数据</div>
|
||||
<div class="dataModel">
|
||||
<div class="view-new">
|
||||
<div class="list-view" v-for="item, index in list " :key="index">
|
||||
<div class="view-new border">
|
||||
<template v-for="item, index in list">
|
||||
<div class="list-view" :key="index" v-if="item.targetValue==1">
|
||||
<img :src="item.img" alt="">
|
||||
<div>
|
||||
<div class="text">{{ item.name }}</div>
|
||||
<div class="number" :style="item.num=='故障'?'color:rgba(252, 125, 106, 1)':''"> {{ getControlData(item) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
<div class="view-new border">
|
||||
<template v-for="item, index in list">
|
||||
<div class="list-view" :key="index" v-if="item.targetValue==0&&(item.equipmentNumber==0||item.equipmentNumber==15)">
|
||||
<img :src="item.img" alt="">
|
||||
<div>
|
||||
<div class="text">{{ item.name }}</div>
|
||||
<div class="number" :style="item.num=='故障'?'color:rgba(252, 125, 106, 1)':''"> {{ getControlData(item) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
<div class="view-new">
|
||||
<template v-for="item, index in list">
|
||||
<div class="list-view" :key="index" v-if="item.targetValue==0&&(item.equipmentNumber!=0&&item.equipmentNumber!=15)">
|
||||
<img :src="item.img" alt="">
|
||||
<div>
|
||||
<div class="text">{{ item.name }}</div>
|
||||
<div class="number" :style="item.num=='故障'?'color:rgba(252, 125, 106, 1)':''"> {{ getControlData(item) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user