Commit f1f8590e authored by lvweichao's avatar lvweichao

update: enterprise image check

parent 54093cdd
...@@ -54,10 +54,11 @@ ...@@ -54,10 +54,11 @@
> >
<template #default="scope"> <template #default="scope">
<el-image <el-image
v-if="scope.row.sensitiveWord" v-if="scope.row.sensitiveWord && scope.row.entterprise_image"
fit="fill" fit="fill"
:src="scope.row.entterprise_image" :src="scope.row.entterprise_image"
></el-image> ></el-image>
<span v-else-if="scope.row.sensitiveWord && !scope.row.entterprise_image"></span>
<span v-else>无权限</span> <span v-else>无权限</span>
</template> </template>
</el-table-column> </el-table-column>
...@@ -77,10 +78,11 @@ ...@@ -77,10 +78,11 @@
> >
<template #default="scope"> <template #default="scope">
<el-image <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" :src="scope.row.legal_front_id_card"
fit="fill" fit="fill"
></el-image> ></el-image>
<span v-else-if="scope.row.sensitiveWord && !scope.row.legal_front_id_card"></span>
<span v-else>无权限</span> <span v-else>无权限</span>
</template> </template>
</el-table-column> </el-table-column>
...@@ -90,10 +92,11 @@ ...@@ -90,10 +92,11 @@
> >
<template #default="scope"> <template #default="scope">
<el-image <el-image
v-if="scope.row.sensitiveWord" v-if="scope.row.sensitiveWord && scope.row.legal_back_id_card"
fit="fill" fit="fill"
:src="scope.row.legal_back_id_card" :src="scope.row.legal_back_id_card"
></el-image> ></el-image>
<span v-else-if="scope.row.sensitiveWord && !scope.row.legal_back_id_card"></span>
<span v-else>无权限</span> <span v-else>无权限</span>
</template> </template>
</el-table-column> </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