Commit f1f8590e authored by lvweichao's avatar lvweichao

update: enterprise image check

parent 54093cdd
......@@ -54,10 +54,11 @@
>
<template #default="scope">
<el-image
v-if="scope.row.sensitiveWord"
v-if="scope.row.sensitiveWord && scope.row.entterprise_image"
fit="fill"
:src="scope.row.entterprise_image"
></el-image>
<span v-else-if="scope.row.sensitiveWord && !scope.row.entterprise_image"></span>
<span v-else>无权限</span>
</template>
</el-table-column>
......@@ -77,10 +78,11 @@
>
<template #default="scope">
<el-image
v-if="scope.row.sensitiveWord"
v-if="scope.row.sensitiveWord && scope.row.legal_front_id_card"
:src="scope.row.legal_front_id_card"
fit="fill"
></el-image>
<span v-else-if="scope.row.sensitiveWord && !scope.row.legal_front_id_card"></span>
<span v-else>无权限</span>
</template>
</el-table-column>
......@@ -90,10 +92,11 @@
>
<template #default="scope">
<el-image
v-if="scope.row.sensitiveWord"
v-if="scope.row.sensitiveWord && scope.row.legal_back_id_card"
fit="fill"
:src="scope.row.legal_back_id_card"
></el-image>
<span v-else-if="scope.row.sensitiveWord && !scope.row.legal_back_id_card"></span>
<span v-else>无权限</span>
</template>
</el-table-column>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment