1
This commit is contained in:
parent
34477c9c1d
commit
a3c83bddc0
@ -1931,6 +1931,10 @@ textarea {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dataModel {
|
||||||
|
height: 650px;
|
||||||
|
}
|
||||||
|
|
||||||
.dataModel .view-new {
|
.dataModel .view-new {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -2032,6 +2032,7 @@ textarea{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.dataModel {
|
.dataModel {
|
||||||
|
height: 650px;
|
||||||
.view-new {
|
.view-new {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -425,7 +425,7 @@
|
|||||||
<el-dialog title="实时数据" class="vrcode-model" :append-to-body="true" :visible.sync="dataModel" width="1030px">
|
<el-dialog title="实时数据" class="vrcode-model" :append-to-body="true" :visible.sync="dataModel" width="1030px">
|
||||||
<el-button class="model-return-btn" type="primary" @click="dataModel = false">返 回</el-button>
|
<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="vrcode-model-title vrcode-model-title-282">实时数据</div>
|
||||||
<div class="dataModel">
|
<div class="dataModel scroll">
|
||||||
<div class="view-new border">
|
<div class="view-new border">
|
||||||
<template v-for="item, index in list">
|
<template v-for="item, index in list">
|
||||||
<div class="list-view" :key="index" v-if="item.targetValue==1">
|
<div class="list-view" :key="index" v-if="item.targetValue==1">
|
||||||
@ -448,9 +448,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
<div class="view-new border">
|
<template v-for="item1,index1 in 13" >
|
||||||
|
<div class="view-new border" :key="index1" v-if="list.some(item => item.targetValue==0 && item.equipmentNumber==(index1+1))">
|
||||||
<template v-for="item, index in list">
|
<template v-for="item, index in list">
|
||||||
<div class="list-view" :key="index" v-if="item.targetValue==0&&(item.equipmentNumber==1)">
|
<div class="list-view" :key="index" v-if="item.targetValue==0&&(item.equipmentNumber==(index1+1))">
|
||||||
<img :src="item.img" alt="">
|
<img :src="item.img" alt="">
|
||||||
<div>
|
<div>
|
||||||
<div class="text">{{ item.name }}</div>
|
<div class="text">{{ item.name }}</div>
|
||||||
@ -459,17 +460,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</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==2)">
|
|
||||||
<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>
|
</template>
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user