|
@@ -130,6 +130,12 @@
|
|
|
<div class="photo-nopass" v-show="!item.pass">不通过</div>
|
|
|
<img class="photo" :src="item.fileUrl" alt width="200" />
|
|
|
<div class="photo-stranger" v-show="item.stranger">陌生人</div>
|
|
|
+ <div
|
|
|
+ class="photo-facelivenessPass"
|
|
|
+ v-show="!item.isFacelivenessPass"
|
|
|
+ >
|
|
|
+ <i class="el-icon-warning"></i>
|
|
|
+ </div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-col>
|
|
@@ -294,7 +300,7 @@ export default {
|
|
|
}
|
|
|
.photocol {
|
|
|
position: relative;
|
|
|
- margin: 10px 10px 0 10px;
|
|
|
+ margin: 20px 10px 0 10px;
|
|
|
}
|
|
|
.photo {
|
|
|
display: block;
|
|
@@ -319,4 +325,12 @@ export default {
|
|
|
font-size: 12px;
|
|
|
background-color: rgba(10, 10, 10, 0.4);
|
|
|
}
|
|
|
+.photo-facelivenessPass {
|
|
|
+ position: absolute;
|
|
|
+ top: 160px;
|
|
|
+ width: 208px;
|
|
|
+ font-size: 14px;
|
|
|
+ text-align: center;
|
|
|
+ color: red;
|
|
|
+}
|
|
|
</style>
|