|
@@ -94,9 +94,15 @@
|
|
<el-table-column
|
|
<el-table-column
|
|
width="120"
|
|
width="120"
|
|
sortable
|
|
sortable
|
|
- label="成功率(%)"
|
|
|
|
|
|
+ label="人脸比对(%)"
|
|
prop="faceSuccessPercent"
|
|
prop="faceSuccessPercent"
|
|
></el-table-column>
|
|
></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ width="120"
|
|
|
|
+ sortable
|
|
|
|
+ label="真实性(%)"
|
|
|
|
+ prop="baiduFaceLivenessSuccessPercent"
|
|
|
|
+ ></el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
sortable
|
|
sortable
|
|
label="违纪类型"
|
|
label="违纪类型"
|
|
@@ -126,7 +132,7 @@
|
|
v-for="item in capturesList"
|
|
v-for="item in capturesList"
|
|
class="photocol"
|
|
class="photocol"
|
|
>
|
|
>
|
|
- <div class="photo-nopass" v-show="item.pass">通过</div>
|
|
|
|
|
|
+ <div class="photo-pass" v-show="item.pass">通过</div>
|
|
<div class="photo-nopass" v-show="!item.pass">不通过</div>
|
|
<div class="photo-nopass" v-show="!item.pass">不通过</div>
|
|
<img class="photo" :src="item.fileUrl" alt width="200" />
|
|
<img class="photo" :src="item.fileUrl" alt width="200" />
|
|
<div class="photo-stranger" v-show="item.stranger">陌生人</div>
|
|
<div class="photo-stranger" v-show="item.stranger">陌生人</div>
|
|
@@ -307,7 +313,7 @@ export default {
|
|
width: 208px;
|
|
width: 208px;
|
|
height: 159px;
|
|
height: 159px;
|
|
}
|
|
}
|
|
-.photo-nopass {
|
|
|
|
|
|
+.photo-pass {
|
|
position: absolute;
|
|
position: absolute;
|
|
top: 2px;
|
|
top: 2px;
|
|
width: 208px;
|
|
width: 208px;
|
|
@@ -316,6 +322,15 @@ export default {
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
background-color: rgba(10, 10, 10, 0.4);
|
|
background-color: rgba(10, 10, 10, 0.4);
|
|
}
|
|
}
|
|
|
|
+.photo-nopass {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 2px;
|
|
|
|
+ width: 208px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ color: red;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ background-color: rgba(10, 10, 10, 0.4);
|
|
|
|
+}
|
|
.photo-stranger {
|
|
.photo-stranger {
|
|
position: absolute;
|
|
position: absolute;
|
|
top: 140px;
|
|
top: 140px;
|