实时监控
This commit is contained in:
parent
affe602366
commit
d42d8a680b
|
|
@ -70,12 +70,19 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- 违章识别 -->
|
<!-- 违章识别 -->
|
||||||
<div class="vio-box">
|
<div class="vio-box">
|
||||||
<el-carousel height="200px" indicator-position="outside" :interval="10000" @change="loadVioInfos"
|
<el-carousel height="200px" indicator-position="outside" :interval="100000" @change="loadVioInfos"
|
||||||
v-if="vioArr.length > 0">
|
v-if="vioArr.length > 0">
|
||||||
<el-carousel-item v-for="(itemArr, arrIndex) in vioArr" :key="arrIndex">
|
<el-carousel-item v-for="(itemArr, arrIndex) in vioArr" :key="arrIndex">
|
||||||
<div class="vio-box-info layout">
|
<div class="vio-box-info layout">
|
||||||
<div class="vio-detail layout" v-for="(item, index) in itemArr" :key="index">
|
<div class="vio-detail layout" v-for="(item, index) in itemArr" :key="index">
|
||||||
<div class="vio-img">
|
<div class="vio-img" v-if="!item.base64Url || item.base64Url.length < 32">
|
||||||
|
<el-image>
|
||||||
|
<div slot="error" class="image-slot">
|
||||||
|
<i class="el-icon-picture-outline"></i>
|
||||||
|
</div>
|
||||||
|
</el-image>
|
||||||
|
</div>
|
||||||
|
<div class="vio-img" v-if="item.base64Url && item.base64Url.length > 32">
|
||||||
<img :src="item.base64Url" alt="违章照片">
|
<img :src="item.base64Url" alt="违章照片">
|
||||||
</div>
|
</div>
|
||||||
<div class="vio-content layout">
|
<div class="vio-content layout">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue