人员信息添加核验状态
This commit is contained in:
parent
474e796242
commit
a5731d7c48
|
|
@ -273,7 +273,7 @@
|
||||||
align="center"
|
align="center"
|
||||||
key="sex"
|
key="sex"
|
||||||
prop="sex"
|
prop="sex"
|
||||||
width="80"
|
width="60"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.row.sex==0">男</span>
|
<span v-if="scope.row.sex==0">男</span>
|
||||||
|
|
@ -308,6 +308,11 @@
|
||||||
<span v-if="scope.row.faceStatus==2">上传失败</span>
|
<span v-if="scope.row.faceStatus==2">上传失败</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column label="人脸核验状态" align="center" width="100">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ scope.row.features == 0 ? '核验失败' : '核验成功'}}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="账号时效" align="center">
|
<el-table-column label="账号时效" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{
|
<span>{{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue